
    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_343e4fd602469a74dd97639c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_52905000dedc4b847f7967a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_2f3f49c3c6d72be555145944.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_27af28576db50fae02e64bae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043083;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_dc1d30db33c1b963f2bbb088.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043083;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_305c8454393eb6136493dec0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_0d06b35cb56785e4f100d05e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_d6222c7e299e9e5fd63c2a20.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls4c{letter-spacing:-6.420000px;}
.ls4b{letter-spacing:-1.542000px;}
.ls3d{letter-spacing:-0.590400px;}
.ls4d{letter-spacing:-0.582000px;}
.ls18{letter-spacing:-0.576000px;}
.ls34{letter-spacing:-0.490800px;}
.lsc{letter-spacing:-0.432000px;}
.ls48{letter-spacing:-0.351600px;}
.ls49{letter-spacing:-0.348600px;}
.ls5{letter-spacing:-0.295200px;}
.ls11{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.234600px;}
.ls2c{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.100800px;}
.ls3e{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.052560px;}
.ls38{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000001px;}
.ls19{letter-spacing:0.000003px;}
.ls12{letter-spacing:0.010080px;}
.ls1b{letter-spacing:0.066960px;}
.lsb{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.123000px;}
.ls9{letter-spacing:0.129600px;}
.ls1e{letter-spacing:0.138240px;}
.ls22{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls2b{letter-spacing:0.229200px;}
.ls1f{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.296400px;}
.ls17{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.371520px;}
.ls14{letter-spacing:0.485280px;}
.lsa{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.948000px;}
.ls4e{letter-spacing:1.130400px;}
.ls3c{letter-spacing:1.440000px;}
.ls45{letter-spacing:1.850400px;}
.ls10{letter-spacing:2.160000px;}
.ls47{letter-spacing:2.388000px;}
.lsf{letter-spacing:2.880000px;}
.ls29{letter-spacing:5.760000px;}
.ls46{letter-spacing:6.170400px;}
.ls1d{letter-spacing:7.920000px;}
.lse{letter-spacing:8.640000px;}
.ls1c{letter-spacing:10.080000px;}
.ls1a{letter-spacing:12.240000px;}
.ls31{letter-spacing:13.680000px;}
.ls16{letter-spacing:16.560000px;}
.ls23{letter-spacing:18.720000px;}
.ls15{letter-spacing:19.440000px;}
.ls25{letter-spacing:20.280000px;}
.ls24{letter-spacing:20.880000px;}
.ls44{letter-spacing:24.170400px;}
.ls41{letter-spacing:25.610400px;}
.ls40{letter-spacing:26.330400px;}
.ls42{letter-spacing:27.050400px;}
.ls3f{letter-spacing:28.490400px;}
.ls3b{letter-spacing:31.680000px;}
.ls39{letter-spacing:33.120000px;}
.ls43{letter-spacing:33.530400px;}
.ls28{letter-spacing:33.840000px;}
.ls2d{letter-spacing:34.560000px;}
.ls32{letter-spacing:35.280000px;}
.ls2a{letter-spacing:36.720000px;}
.ls27{letter-spacing:41.040000px;}
.ls35{letter-spacing:51.264000px;}
.ls36{letter-spacing:51.984000px;}
.ls37{letter-spacing:52.704000px;}
.ls13{letter-spacing:54.864000px;}
.ls3a{letter-spacing:55.386720px;}
.ls26{letter-spacing:64.026720px;}
.ls21{letter-spacing:82.800000px;}
.ls20{letter-spacing:82.980000px;}
.ls0{letter-spacing:520.020000px;}
.ls33{letter-spacing:844.284000px;}
.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:-72.000000px;}
.ws11{word-spacing:-59.760000px;}
.ws8{word-spacing:-15.785280px;}
.wsc{word-spacing:-15.480000px;}
.wse{word-spacing:-15.408000px;}
.wsd{word-spacing:-15.336000px;}
.ws15{word-spacing:-15.192000px;}
.ws14{word-spacing:-15.120003px;}
.ws13{word-spacing:-15.120001px;}
.ws1{word-spacing:-15.120000px;}
.ws1c{word-spacing:-15.048000px;}
.ws10{word-spacing:-14.976000px;}
.ws1d{word-spacing:-14.937600px;}
.ws18{word-spacing:-14.904000px;}
.wsa{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.688000px;}
.ws0{word-spacing:-14.616000px;}
.ws1a{word-spacing:-14.615997px;}
.ws19{word-spacing:-14.328000px;}
.ws12{word-spacing:-13.497600px;}
.wsf{word-spacing:-12.778800px;}
.ws17{word-spacing:-12.679200px;}
.ws20{word-spacing:-12.559680px;}
.ws3{word-spacing:-12.549600px;}
.ws4{word-spacing:-12.497040px;}
.ws2{word-spacing:-12.448800px;}
.ws21{word-spacing:-12.315000px;}
.ws1f{word-spacing:-12.201000px;}
.ws1e{word-spacing:-12.198000px;}
.ws6{word-spacing:-12.131280px;}
.ws5{word-spacing:-12.071520px;}
.ws16{word-spacing:-12.058800px;}
.ws24{word-spacing:-11.967600px;}
.ws1b{word-spacing:-11.959200px;}
.ws22{word-spacing:-11.007600px;}
.ws23{word-spacing:-6.129600px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._52{margin-left:-8.013120px;}
._6{margin-left:-6.612000px;}
._7{margin-left:-5.020800px;}
._b{margin-left:-3.955200px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._a{width:1.104000px;}
._5{width:2.208000px;}
._15{width:3.312000px;}
._14{width:4.608000px;}
._2b{width:5.904000px;}
._1a{width:6.912000px;}
._20{width:7.920000px;}
._24{width:8.928000px;}
._21{width:10.032000px;}
._2a{width:11.040000px;}
._28{width:12.240000px;}
._1b{width:14.112000px;}
._50{width:15.515520px;}
._1e{width:16.608000px;}
._f{width:17.712000px;}
._1f{width:18.864000px;}
._1c{width:20.160000px;}
._25{width:21.384000px;}
._34{width:22.440000px;}
._18{width:23.460000px;}
._13{width:24.996000px;}
._12{width:26.304000px;}
._2e{width:27.480000px;}
._e{width:28.512000px;}
._d{width:29.784000px;}
._11{width:30.816000px;}
._10{width:32.184000px;}
._1d{width:33.192000px;}
._16{width:34.488000px;}
._17{width:35.496000px;}
._30{width:36.720000px;}
._2f{width:37.800000px;}
._39{width:39.720000px;}
._44{width:41.654400px;}
._29{width:43.128000px;}
._32{width:44.136000px;}
._41{width:46.080000px;}
._42{width:47.712000px;}
._2c{width:49.032000px;}
._2d{width:50.280000px;}
._4c{width:51.840000px;}
._45{width:52.920000px;}
._48{width:54.552000px;}
._26{width:55.656000px;}
._27{width:57.180000px;}
._33{width:59.544000px;}
._38{width:61.488000px;}
._4a{width:62.544000px;}
._19{width:63.792000px;}
._35{width:65.088000px;}
._22{width:66.816000px;}
._23{width:67.848000px;}
._31{width:73.728000px;}
._40{width:82.728000px;}
._36{width:103.248000px;}
._37{width:105.192000px;}
._3e{width:127.368000px;}
._3f{width:128.736000px;}
._4f{width:156.511440px;}
._4e{width:158.005440px;}
._51{width:166.224000px;}
._3c{width:171.972000px;}
._3d{width:185.760000px;}
._3a{width:197.460000px;}
._2{width:475.164000px;}
._8{width:556.267200px;}
._3{width:1295.580000px;}
._4b{width:1452.182400px;}
._4d{width:1454.342400px;}
._43{width:1457.222400px;}
._47{width:1458.662400px;}
._49{width:1460.822400px;}
._46{width:1464.422400px;}
._3b{width:1485.302400px;}
._c{width:1486.742400px;}
._9{width:1491.110400px;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:4.500000px;}
.ybf{bottom:5.400000px;}
.yf5{bottom:5.430000px;}
.y1a{bottom:5.760000px;}
.yf{bottom:18.540000px;}
.y3d{bottom:22.500000px;}
.ybe{bottom:27.000000px;}
.yf4{bottom:27.030000px;}
.y180{bottom:27.045000px;}
.y19{bottom:27.900000px;}
.ye{bottom:39.240000px;}
.y3c{bottom:40.494000px;}
.y18{bottom:45.900000px;}
.yc6{bottom:48.594000px;}
.yc9{bottom:48.600000px;}
.yf3{bottom:48.630000px;}
.ybd{bottom:48.645000px;}
.yd{bottom:57.240000px;}
.y5{bottom:57.600000px;}
.y3b{bottom:58.494000px;}
.y17{bottom:64.800000px;}
.yc5{bottom:70.194000px;}
.yc8{bottom:70.200000px;}
.ybc{bottom:70.245000px;}
.yc{bottom:76.140000px;}
.y3a{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.y16{bottom:86.400000px;}
.yc4{bottom:91.794000px;}
.ye2{bottom:91.800000px;}
.ye7{bottom:91.845000px;}
.y39{bottom:95.394000px;}
.yb{bottom:97.740000px;}
.y15{bottom:108.000000px;}
.yc3{bottom:113.394000px;}
.ye1{bottom:113.400000px;}
.ye6{bottom:113.445000px;}
.y1b{bottom:114.156000px;}
.y1e8{bottom:115.056000px;}
.y1a0{bottom:116.136000px;}
.y38{bottom:116.994000px;}
.y200{bottom:117.216000px;}
.y21c{bottom:119.016000px;}
.ya{bottom:119.340000px;}
.y22d{bottom:119.556000px;}
.yc0{bottom:119.736000px;}
.y23d{bottom:121.356000px;}
.y186{bottom:124.416000px;}
.y150{bottom:124.776000px;}
.y27a{bottom:125.496000px;}
.y258{bottom:126.396000px;}
.y109{bottom:127.116000px;}
.y126{bottom:128.556000px;}
.y6d{bottom:128.736000px;}
.yed{bottom:129.276000px;}
.y14{bottom:130.005000px;}
.y1a2{bottom:132.336000px;}
.yc2{bottom:134.994000px;}
.ye0{bottom:135.000000px;}
.y2b7{bottom:135.036000px;}
.ye5{bottom:135.045000px;}
.y1e7{bottom:136.656000px;}
.y19f{bottom:137.736000px;}
.y37{bottom:138.594000px;}
.yb3{bottom:140.616000px;}
.y22c{bottom:141.156000px;}
.y9{bottom:141.300000px;}
.y23c{bottom:142.956000px;}
.y164{bottom:144.936000px;}
.y185{bottom:146.016000px;}
.y14f{bottom:146.376000px;}
.y279{bottom:147.096000px;}
.y257{bottom:147.996000px;}
.y108{bottom:148.716000px;}
.y125{bottom:150.150000px;}
.y6c{bottom:150.330000px;}
.yec{bottom:150.870000px;}
.y187{bottom:151.950000px;}
.y2b6{bottom:153.030000px;}
.y13{bottom:153.405000px;}
.y1a1{bottom:153.930000px;}
.y19e{bottom:154.650000px;}
.yc1{bottom:156.594000px;}
.y20a{bottom:156.600000px;}
.ydf{bottom:156.630000px;}
.ye4{bottom:156.645000px;}
.y1e6{bottom:158.250000px;}
.y36{bottom:159.294000px;}
.yb2{bottom:162.210000px;}
.y22b{bottom:162.750000px;}
.y1ff{bottom:164.190000px;}
.y23b{bottom:164.550000px;}
.y8{bottom:164.700000px;}
.y163{bottom:166.530000px;}
.y184{bottom:167.610000px;}
.y14e{bottom:167.970000px;}
.y278{bottom:168.690000px;}
.y256{bottom:169.590000px;}
.y107{bottom:170.310000px;}
.y2b5{bottom:171.030000px;}
.y124{bottom:171.750000px;}
.y6b{bottom:171.930000px;}
.yeb{bottom:172.470000px;}
.y9a{bottom:175.530000px;}
.y12{bottom:176.805000px;}
.y35{bottom:177.294000px;}
.y209{bottom:178.200000px;}
.yde{bottom:178.230000px;}
.y11{bottom:178.245000px;}
.y1e5{bottom:179.850000px;}
.yb1{bottom:183.810000px;}
.y22a{bottom:184.350000px;}
.y23a{bottom:186.150000px;}
.y1fe{bottom:187.590000px;}
.y20b{bottom:188.670000px;}
.y2b4{bottom:189.030000px;}
.y183{bottom:189.210000px;}
.y14d{bottom:189.570000px;}
.y162{bottom:189.930000px;}
.y277{bottom:190.290000px;}
.y255{bottom:191.190000px;}
.y106{bottom:191.910000px;}
.y123{bottom:193.350000px;}
.y6a{bottom:193.530000px;}
.yea{bottom:194.070000px;}
.y34{bottom:195.294000px;}
.y99{bottom:197.130000px;}
.y19d{bottom:198.570000px;}
.y208{bottom:199.800000px;}
.ydd{bottom:199.830000px;}
.y1e4{bottom:201.450000px;}
.yb0{bottom:205.410000px;}
.y229{bottom:205.950000px;}
.y182{bottom:206.130000px;}
.y2b3{bottom:207.030000px;}
.y239{bottom:207.750000px;}
.y1fd{bottom:209.190000px;}
.y14c{bottom:211.170000px;}
.y161{bottom:211.530000px;}
.y276{bottom:211.890000px;}
.y254{bottom:212.790000px;}
.y33{bottom:213.294000px;}
.y105{bottom:213.510000px;}
.y122{bottom:214.950000px;}
.y69{bottom:215.130000px;}
.ye9{bottom:215.670000px;}
.y98{bottom:218.730000px;}
.y207{bottom:221.400000px;}
.ydc{bottom:221.430000px;}
.y1e3{bottom:223.050000px;}
.y2b2{bottom:225.030000px;}
.yaf{bottom:227.010000px;}
.y228{bottom:227.550000px;}
.y238{bottom:229.350000px;}
.y1fc{bottom:230.790000px;}
.y32{bottom:231.339000px;}
.y14b{bottom:232.770000px;}
.y275{bottom:233.490000px;}
.y253{bottom:234.390000px;}
.y104{bottom:235.110000px;}
.y121{bottom:236.550000px;}
.y68{bottom:236.730000px;}
.ye8{bottom:237.270000px;}
.y97{bottom:240.330000px;}
.y206{bottom:243.000000px;}
.ydb{bottom:243.030000px;}
.y1e2{bottom:244.650000px;}
.yae{bottom:248.610000px;}
.y227{bottom:249.150000px;}
.y31{bottom:249.339000px;}
.y181{bottom:250.050000px;}
.y21b{bottom:250.590000px;}
.y237{bottom:250.950000px;}
.y1fb{bottom:252.390000px;}
.ye3{bottom:254.190000px;}
.y14a{bottom:254.370000px;}
.y274{bottom:255.090000px;}
.y252{bottom:255.990000px;}
.y103{bottom:256.710000px;}
.y120{bottom:258.150000px;}
.y67{bottom:258.330000px;}
.y2b1{bottom:261.030000px;}
.y96{bottom:261.930000px;}
.y19c{bottom:264.090000px;}
.yda{bottom:264.630000px;}
.y1e1{bottom:266.250000px;}
.y30{bottom:267.339000px;}
.yad{bottom:270.210000px;}
.y226{bottom:270.750000px;}
.y21a{bottom:272.190000px;}
.y236{bottom:272.550000px;}
.y1fa{bottom:273.990000px;}
.y149{bottom:275.970000px;}
.y273{bottom:276.690000px;}
.y251{bottom:277.590000px;}
.y283{bottom:277.770000px;}
.y102{bottom:278.310000px;}
.y2b0{bottom:279.030000px;}
.y11f{bottom:279.750000px;}
.y66{bottom:279.930000px;}
.y95{bottom:283.530000px;}
.y2f{bottom:285.339000px;}
.yd9{bottom:286.230000px;}
.y1e0{bottom:287.850000px;}
.yac{bottom:291.810000px;}
.ybb{bottom:293.250000px;}
.y219{bottom:293.790000px;}
.y225{bottom:294.150000px;}
.y1f9{bottom:295.590000px;}
.y2af{bottom:297.030000px;}
.y148{bottom:297.570000px;}
.y272{bottom:298.290000px;}
.y250{bottom:299.190000px;}
.y25a{bottom:299.370000px;}
.y101{bottom:299.910000px;}
.y11e{bottom:301.350000px;}
.y65{bottom:301.530000px;}
.y2e{bottom:303.339000px;}
.y94{bottom:305.130000px;}
.yd8{bottom:307.830000px;}
.y19b{bottom:308.010000px;}
.y1df{bottom:309.450000px;}
.yab{bottom:313.410000px;}
.y2ae{bottom:315.030000px;}
.y17f{bottom:315.750000px;}
.y1f8{bottom:317.190000px;}
.y224{bottom:317.730000px;}
.y147{bottom:319.170000px;}
.y271{bottom:319.890000px;}
.y24f{bottom:320.790000px;}
.y282{bottom:320.970000px;}
.y2d{bottom:321.339000px;}
.y100{bottom:321.510000px;}
.y11d{bottom:322.950000px;}
.y64{bottom:323.130000px;}
.y93{bottom:326.730000px;}
.yd7{bottom:329.430000px;}
.y1de{bottom:331.050000px;}
.y2ad{bottom:333.030000px;}
.yaa{bottom:335.010000px;}
.y1f7{bottom:338.835000px;}
.y2c{bottom:339.339000px;}
.y235{bottom:339.375000px;}
.y203{bottom:340.635000px;}
.y146{bottom:340.815000px;}
.y223{bottom:341.175000px;}
.y270{bottom:341.535000px;}
.y24e{bottom:342.435000px;}
.y281{bottom:342.615000px;}
.yff{bottom:343.155000px;}
.y11c{bottom:344.595000px;}
.y63{bottom:344.775000px;}
.y259{bottom:346.395000px;}
.y92{bottom:348.375000px;}
.yd6{bottom:351.030000px;}
.y2ac{bottom:351.075000px;}
.y19a{bottom:352.155000px;}
.y1dd{bottom:352.695000px;}
.ya9{bottom:356.655000px;}
.y2b{bottom:357.339000px;}
.y1bc{bottom:358.635000px;}
.y1f6{bottom:360.435000px;}
.y145{bottom:362.415000px;}
.y234{bottom:362.775000px;}
.y26f{bottom:363.135000px;}
.y24d{bottom:364.035000px;}
.y280{bottom:364.215000px;}
.yfe{bottom:364.755000px;}
.y11b{bottom:366.195000px;}
.y62{bottom:366.375000px;}
.y2ab{bottom:369.075000px;}
.y91{bottom:369.975000px;}
.yd5{bottom:372.630000px;}
.y1dc{bottom:374.295000px;}
.y2a{bottom:375.339000px;}
.ya8{bottom:378.255000px;}
.y1bb{bottom:380.235000px;}
.y17e{bottom:381.315000px;}
.y1f5{bottom:382.035000px;}
.y144{bottom:384.015000px;}
.y26e{bottom:384.735000px;}
.y24c{bottom:385.635000px;}
.yba{bottom:385.815000px;}
.yfd{bottom:386.355000px;}
.y2aa{bottom:387.075000px;}
.y11a{bottom:387.795000px;}
.y61{bottom:387.975000px;}
.y90{bottom:391.575000px;}
.y29{bottom:393.339000px;}
.yd4{bottom:394.230000px;}
.y1db{bottom:395.895000px;}
.ya7{bottom:401.835000px;}
.y222{bottom:403.275000px;}
.y1f4{bottom:403.635000px;}
.y2a9{bottom:405.075000px;}
.y143{bottom:405.615000px;}
.y26d{bottom:406.335000px;}
.y24b{bottom:407.235000px;}
.yb9{bottom:407.415000px;}
.yfc{bottom:407.955000px;}
.y119{bottom:409.395000px;}
.y60{bottom:409.575000px;}
.y28{bottom:411.339000px;}
.y8f{bottom:413.175000px;}
.yd3{bottom:415.830000px;}
.y1da{bottom:417.495000px;}
.y199{bottom:417.675000px;}
.y2a8{bottom:423.075000px;}
.ya6{bottom:423.435000px;}
.y17d{bottom:425.235000px;}
.y142{bottom:427.215000px;}
.y26c{bottom:427.935000px;}
.y24a{bottom:428.835000px;}
.yb8{bottom:429.015000px;}
.y27{bottom:429.339000px;}
.yfb{bottom:429.555000px;}
.y118{bottom:430.995000px;}
.y5f{bottom:431.175000px;}
.y8e{bottom:434.775000px;}
.y205{bottom:437.430000px;}
.yd2{bottom:437.475000px;}
.y1d9{bottom:439.095000px;}
.y2a7{bottom:441.075000px;}
.y1ba{bottom:445.035000px;}
.ya5{bottom:446.835000px;}
.y26{bottom:447.339000px;}
.y141{bottom:448.815000px;}
.yca{bottom:449.535000px;}
.y249{bottom:450.435000px;}
.yb7{bottom:450.615000px;}
.yfa{bottom:451.155000px;}
.y117{bottom:452.595000px;}
.y5e{bottom:452.775000px;}
.y8d{bottom:456.375000px;}
.y204{bottom:459.030000px;}
.yd1{bottom:459.075000px;}
.y1d8{bottom:460.695000px;}
.y198{bottom:461.595000px;}
.y25{bottom:466.239000px;}
.y1b9{bottom:466.635000px;}
.y1f3{bottom:468.435000px;}
.y221{bottom:468.795000px;}
.ya4{bottom:470.415000px;}
.y26b{bottom:471.135000px;}
.y248{bottom:472.035000px;}
.yb6{bottom:472.215000px;}
.yf9{bottom:472.755000px;}
.y116{bottom:474.195000px;}
.y5d{bottom:474.375000px;}
.y2a6{bottom:477.075000px;}
.y8c{bottom:477.975000px;}
.yd0{bottom:480.675000px;}
.y24{bottom:486.939000px;}
.y1b8{bottom:488.235000px;}
.y1f2{bottom:490.035000px;}
.y17c{bottom:490.755000px;}
.ya3{bottom:492.015000px;}
.y26a{bottom:492.735000px;}
.y247{bottom:493.635000px;}
.y27f{bottom:493.815000px;}
.yf8{bottom:494.355000px;}
.y2a5{bottom:495.075000px;}
.yb5{bottom:495.795000px;}
.y5c{bottom:495.975000px;}
.y8b{bottom:499.575000px;}
.ycf{bottom:502.275000px;}
.y23{bottom:504.969000px;}
.y197{bottom:505.515000px;}
.y1b7{bottom:509.835000px;}
.y1f1{bottom:511.635000px;}
.y220{bottom:512.715000px;}
.y2a4{bottom:513.075000px;}
.ya2{bottom:513.615000px;}
.y269{bottom:514.335000px;}
.y246{bottom:515.235000px;}
.y27e{bottom:515.415000px;}
.yf7{bottom:515.955000px;}
.y115{bottom:517.395000px;}
.y5b{bottom:517.575000px;}
.yb4{bottom:519.195000px;}
.y8a{bottom:521.175000px;}
.y22{bottom:522.969000px;}
.yce{bottom:523.875000px;}
.y2a3{bottom:531.075000px;}
.y1b6{bottom:531.435000px;}
.yf6{bottom:532.875000px;}
.y1f0{bottom:533.235000px;}
.y17b{bottom:534.675000px;}
.y140{bottom:535.215000px;}
.y268{bottom:535.935000px;}
.y245{bottom:536.835000px;}
.ya1{bottom:537.015000px;}
.y15c{bottom:537.555000px;}
.y114{bottom:538.995000px;}
.y5a{bottom:539.175000px;}
.y21{bottom:540.969000px;}
.y1d7{bottom:540.975000px;}
.y89{bottom:542.775000px;}
.ycd{bottom:545.475000px;}
.y2a2{bottom:549.075000px;}
.y2d6{bottom:552.675000px;}
.y1b5{bottom:553.035000px;}
.y196{bottom:554.835000px;}
.y13f{bottom:556.815000px;}
.y267{bottom:557.535000px;}
.y244{bottom:558.435000px;}
.ya0{bottom:558.615000px;}
.y20{bottom:558.969000px;}
.y15b{bottom:559.155000px;}
.y113{bottom:560.595000px;}
.y59{bottom:560.775000px;}
.y17a{bottom:562.395000px;}
.y1d6{bottom:562.575000px;}
.y88{bottom:564.375000px;}
.ycc{bottom:567.075000px;}
.y2d5{bottom:570.675000px;}
.y1b4{bottom:574.635000px;}
.y195{bottom:576.435000px;}
.y1f{bottom:576.969000px;}
.y21f{bottom:578.235000px;}
.y13e{bottom:578.415000px;}
.y266{bottom:579.135000px;}
.y243{bottom:580.035000px;}
.y27d{bottom:580.215000px;}
.y15a{bottom:580.755000px;}
.y9f{bottom:582.195000px;}
.y58{bottom:582.375000px;}
.y179{bottom:583.995000px;}
.y1d5{bottom:584.175000px;}
.y2a1{bottom:585.075000px;}
.y87{bottom:585.975000px;}
.ycb{bottom:588.675000px;}
.y1e{bottom:594.969000px;}
.y1b3{bottom:596.235000px;}
.y242{bottom:596.955000px;}
.y210{bottom:597.675000px;}
.y194{bottom:598.035000px;}
.yf2{bottom:598.395000px;}
.y13d{bottom:600.015000px;}
.y265{bottom:600.735000px;}
.y27c{bottom:601.815000px;}
.y159{bottom:602.355000px;}
.y2a0{bottom:603.075000px;}
.y9e{bottom:603.825000px;}
.y57{bottom:604.005000px;}
.y178{bottom:605.625000px;}
.y1d4{bottom:605.805000px;}
.y2d4{bottom:606.705000px;}
.y86{bottom:607.605000px;}
.y1d{bottom:614.229000px;}
.y1c{bottom:615.669000px;}
.y1b2{bottom:617.865000px;}
.y193{bottom:619.665000px;}
.y29f{bottom:621.105000px;}
.y13c{bottom:621.645000px;}
.y264{bottom:622.365000px;}
.y27b{bottom:623.445000px;}
.y158{bottom:623.985000px;}
.y2d3{bottom:624.705000px;}
.y9d{bottom:625.425000px;}
.y56{bottom:625.605000px;}
.y177{bottom:627.225000px;}
.y1d3{bottom:627.405000px;}
.y85{bottom:629.205000px;}
.y29e{bottom:639.105000px;}
.y1b1{bottom:639.465000px;}
.y192{bottom:641.265000px;}
.y20f{bottom:641.625000px;}
.y2d2{bottom:642.705000px;}
.y13b{bottom:643.245000px;}
.y21e{bottom:643.965000px;}
.y157{bottom:645.585000px;}
.y9c{bottom:647.025000px;}
.y55{bottom:647.205000px;}
.y176{bottom:648.825000px;}
.y1d2{bottom:649.005000px;}
.y84{bottom:650.805000px;}
.y29d{bottom:657.105000px;}
.y2d1{bottom:660.705000px;}
.y1b0{bottom:661.065000px;}
.y156{bottom:662.505000px;}
.y191{bottom:662.865000px;}
.yf1{bottom:663.945000px;}
.y13a{bottom:664.845000px;}
.y263{bottom:665.565000px;}
.y233{bottom:667.185000px;}
.y112{bottom:668.625000px;}
.y54{bottom:668.805000px;}
.y9b{bottom:670.425000px;}
.y1d1{bottom:670.605000px;}
.y83{bottom:672.405000px;}
.y29c{bottom:675.105000px;}
.y2d0{bottom:678.705000px;}
.y1af{bottom:682.665000px;}
.y190{bottom:684.465000px;}
.y20e{bottom:685.545000px;}
.y139{bottom:686.445000px;}
.y262{bottom:687.165000px;}
.y232{bottom:688.785000px;}
.y111{bottom:690.225000px;}
.y53{bottom:690.405000px;}
.y175{bottom:692.025000px;}
.y1d0{bottom:692.205000px;}
.y29b{bottom:693.105000px;}
.y82{bottom:694.005000px;}
.y2cf{bottom:696.705000px;}
.y1ae{bottom:704.265000px;}
.y231{bottom:705.705000px;}
.y18f{bottom:706.065000px;}
.y241{bottom:706.425000px;}
.y138{bottom:708.045000px;}
.y261{bottom:708.765000px;}
.y21d{bottom:709.485000px;}
.y29a{bottom:711.105000px;}
.y110{bottom:711.825000px;}
.y52{bottom:712.005000px;}
.y174{bottom:713.625000px;}
.y1cf{bottom:713.805000px;}
.y2ce{bottom:714.705000px;}
.y81{bottom:715.605000px;}
.y1ad{bottom:725.865000px;}
.y18e{bottom:727.665000px;}
.y299{bottom:729.105000px;}
.yf0{bottom:729.465000px;}
.y137{bottom:729.645000px;}
.y260{bottom:730.365000px;}
.y2cd{bottom:732.705000px;}
.y10f{bottom:733.425000px;}
.y51{bottom:733.605000px;}
.y173{bottom:735.225000px;}
.y1ce{bottom:735.405000px;}
.y80{bottom:737.205000px;}
.y10{bottom:746.745000px;}
.y298{bottom:747.105000px;}
.y1ac{bottom:747.465000px;}
.y18d{bottom:749.265000px;}
.y240{bottom:750.345000px;}
.y2cc{bottom:750.705000px;}
.y136{bottom:751.245000px;}
.y10e{bottom:755.025000px;}
.y50{bottom:755.205000px;}
.y172{bottom:756.825000px;}
.y1cd{bottom:757.005000px;}
.y7f{bottom:758.805000px;}
.y297{bottom:765.105000px;}
.y2cb{bottom:768.705000px;}
.y1ab{bottom:769.065000px;}
.y18c{bottom:770.865000px;}
.y155{bottom:771.225000px;}
.y135{bottom:772.845000px;}
.y20d{bottom:773.565000px;}
.y10d{bottom:776.625000px;}
.y4f{bottom:776.805000px;}
.y171{bottom:778.425000px;}
.y1cc{bottom:778.605000px;}
.y7e{bottom:780.405000px;}
.y296{bottom:783.105000px;}
.y2ca{bottom:786.705000px;}
.y25f{bottom:791.385000px;}
.y18b{bottom:792.465000px;}
.y23f{bottom:794.265000px;}
.y134{bottom:794.445000px;}
.yef{bottom:795.165000px;}
.y10c{bottom:798.225000px;}
.y4e{bottom:798.405000px;}
.y170{bottom:800.025000px;}
.y1cb{bottom:800.205000px;}
.y295{bottom:801.105000px;}
.y7d{bottom:802.005000px;}
.y2c9{bottom:804.705000px;}
.y18a{bottom:814.065000px;}
.y160{bottom:815.145000px;}
.y133{bottom:816.045000px;}
.y202{bottom:816.765000px;}
.y20c{bottom:817.485000px;}
.y294{bottom:819.105000px;}
.y218{bottom:819.825000px;}
.y4d{bottom:820.005000px;}
.y10b{bottom:821.625000px;}
.y1ca{bottom:821.805000px;}
.y2c8{bottom:822.705000px;}
.y7c{bottom:823.605000px;}
.y25e{bottom:835.305000px;}
.y1ef{bottom:835.665000px;}
.y154{bottom:836.745000px;}
.y293{bottom:837.105000px;}
.y132{bottom:837.645000px;}
.y23e{bottom:838.365000px;}
.y2c7{bottom:840.705000px;}
.y217{bottom:841.425000px;}
.y4c{bottom:841.605000px;}
.y10a{bottom:843.225000px;}
.y1c9{bottom:843.405000px;}
.y7b{bottom:845.205000px;}
.y292{bottom:855.105000px;}
.y1ee{bottom:857.265000px;}
.y2c6{bottom:858.705000px;}
.y230{bottom:859.065000px;}
.y131{bottom:859.245000px;}
.y189{bottom:861.045000px;}
.y216{bottom:863.025000px;}
.y4b{bottom:863.205000px;}
.y16f{bottom:864.825000px;}
.y1c8{bottom:865.005000px;}
.y7a{bottom:866.805000px;}
.y291{bottom:873.150000px;}
.y2c5{bottom:876.750000px;}
.y1ed{bottom:878.910000px;}
.y25d{bottom:879.270000px;}
.y15f{bottom:880.710000px;}
.y130{bottom:880.890000px;}
.yee{bottom:882.330000px;}
.y1aa{bottom:882.690000px;}
.y188{bottom:884.670000px;}
.y4a{bottom:884.850000px;}
.y16e{bottom:886.470000px;}
.y1c7{bottom:886.650000px;}
.y79{bottom:888.450000px;}
.y290{bottom:891.150000px;}
.y2c4{bottom:894.750000px;}
.y1ec{bottom:900.510000px;}
.y12f{bottom:902.490000px;}
.y1a9{bottom:904.290000px;}
.y215{bottom:906.270000px;}
.y49{bottom:906.450000px;}
.y16d{bottom:908.070000px;}
.y1c6{bottom:908.250000px;}
.y28f{bottom:909.150000px;}
.y78{bottom:910.050000px;}
.y2c3{bottom:912.750000px;}
.y1eb{bottom:922.110000px;}
.y25c{bottom:923.190000px;}
.y153{bottom:923.910000px;}
.y12e{bottom:924.090000px;}
.y22f{bottom:924.810000px;}
.y1a8{bottom:925.890000px;}
.y28e{bottom:927.150000px;}
.y214{bottom:927.870000px;}
.y48{bottom:928.050000px;}
.y16c{bottom:929.670000px;}
.y1c5{bottom:929.850000px;}
.y2c2{bottom:930.750000px;}
.y77{bottom:931.650000px;}
.y7{bottom:941.910000px;}
.y1ea{bottom:943.710000px;}
.y28d{bottom:945.150000px;}
.y12d{bottom:945.690000px;}
.y1a7{bottom:947.490000px;}
.y2c1{bottom:948.750000px;}
.y213{bottom:949.470000px;}
.y47{bottom:949.650000px;}
.y16b{bottom:951.270000px;}
.y1c4{bottom:951.450000px;}
.y76{bottom:953.250000px;}
.y28c{bottom:963.150000px;}
.y2c0{bottom:966.750000px;}
.y25b{bottom:967.110000px;}
.y1e9{bottom:967.290000px;}
.y15e{bottom:968.010000px;}
.y12c{bottom:969.090000px;}
.y212{bottom:971.070000px;}
.y46{bottom:971.250000px;}
.y16a{bottom:972.870000px;}
.y1c3{bottom:973.050000px;}
.y75{bottom:974.850000px;}
.y28b{bottom:981.150000px;}
.y2bf{bottom:984.750000px;}
.y22e{bottom:990.330000px;}
.y12b{bottom:990.690000px;}
.y211{bottom:992.670000px;}
.y45{bottom:992.850000px;}
.y169{bottom:994.470000px;}
.y1c2{bottom:994.650000px;}
.y74{bottom:996.450000px;}
.y28a{bottom:999.150000px;}
.y2be{bottom:1002.750000px;}
.y152{bottom:1011.210000px;}
.y201{bottom:1011.930000px;}
.y1a6{bottom:1012.290000px;}
.y12a{bottom:1014.270000px;}
.y44{bottom:1014.450000px;}
.y168{bottom:1016.070000px;}
.y1c1{bottom:1016.250000px;}
.y289{bottom:1017.150000px;}
.y73{bottom:1018.050000px;}
.y2bd{bottom:1020.750000px;}
.y15d{bottom:1033.530000px;}
.y1a5{bottom:1033.890000px;}
.y288{bottom:1035.150000px;}
.y129{bottom:1035.870000px;}
.y43{bottom:1036.050000px;}
.y167{bottom:1037.670000px;}
.y1c0{bottom:1037.850000px;}
.y2bc{bottom:1038.750000px;}
.y72{bottom:1039.650000px;}
.y287{bottom:1053.150000px;}
.yc7{bottom:1055.130000px;}
.y2bb{bottom:1056.750000px;}
.y1a4{bottom:1057.470000px;}
.y42{bottom:1057.650000px;}
.y128{bottom:1059.270000px;}
.y1bf{bottom:1059.450000px;}
.y71{bottom:1061.250000px;}
.y286{bottom:1071.150000px;}
.y2ba{bottom:1074.750000px;}
.y151{bottom:1076.730000px;}
.y1a3{bottom:1079.070000px;}
.y41{bottom:1079.250000px;}
.y127{bottom:1080.870000px;}
.y1be{bottom:1081.050000px;}
.y70{bottom:1082.850000px;}
.y285{bottom:1089.150000px;}
.y2b9{bottom:1092.750000px;}
.y40{bottom:1101.210000px;}
.y166{bottom:1102.470000px;}
.y1bd{bottom:1102.650000px;}
.y6f{bottom:1104.450000px;}
.y284{bottom:1107.150000px;}
.y2b8{bottom:1110.750000px;}
.y165{bottom:1124.070000px;}
.y3f{bottom:1124.610000px;}
.y6e{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.hf{height:21.600000px;}
.h12{height:43.200000px;}
.h15{height:43.236000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h10{height:64.800000px;}
.h11{height:64.836000px;}
.h7{height:67.262400px;}
.h13{height:86.400000px;}
.hc{height:86.436000px;}
.h14{height:108.000000px;}
.h17{height:151.230000px;}
.hd{height:172.800000px;}
.h6{height:182.340000px;}
.h8{height:194.430000px;}
.h16{height:475.230000px;}
.he{height:604.875000px;}
.h9{height:631.875000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:73.296000px;}
.w6{width:84.420000px;}
.w8{width:88.956000px;}
.w1c{width:91.620000px;}
.w1b{width:92.916000px;}
.w20{width:113.760000px;}
.w1e{width:122.076000px;}
.w1f{width:126.216000px;}
.w9{width:143.820000px;}
.w27{width:146.880000px;}
.w11{width:147.780000px;}
.wa{width:158.790000px;}
.w10{width:164.550000px;}
.w7{width:169.050000px;}
.w1d{width:171.210000px;}
.we{width:179.670000px;}
.w24{width:190.290000px;}
.w19{width:190.470000px;}
.w25{width:191.415000px;}
.w2e{width:197.175000px;}
.w2b{width:198.795000px;}
.w22{width:199.830000px;}
.w18{width:201.135000px;}
.w26{width:201.990000px;}
.w3{width:202.215000px;}
.w15{width:203.115000px;}
.w2f{width:203.970000px;}
.w2a{width:213.870000px;}
.w14{width:218.550000px;}
.w12{width:220.215000px;}
.w28{width:225.975000px;}
.w2c{width:226.830000px;}
.wf{width:227.235000px;}
.wc{width:233.310000px;}
.w21{width:233.355000px;}
.wb{width:239.475000px;}
.w16{width:241.050000px;}
.wd{width:246.810000px;}
.w17{width:275.610000px;}
.w29{width:280.110000px;}
.w13{width:281.190000px;}
.w23{width:286.590000px;}
.w2d{width:294.150000px;}
.w30{width:318.810000px;}
.w1a{width:328.350000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x28{left:106.235987px;}
.xe{left:111.995987px;}
.xf{left:138.995987px;}
.x7{left:159.870000px;}
.x5{left:165.089987px;}
.x18{left:179.490000px;}
.x2{left:190.290000px;}
.x6{left:192.089987px;}
.x8{left:245.010000px;}
.x10{left:266.250000px;}
.x19{left:271.830000px;}
.x1f{left:276.870000px;}
.x26{left:283.755000px;}
.x24{left:285.375000px;}
.x3{left:287.175000px;}
.x15{left:289.695000px;}
.x13{left:306.795000px;}
.x22{left:312.555000px;}
.x1d{left:320.115000px;}
.xc{left:326.235000px;}
.x9{left:414.795000px;}
.x1a{left:443.775000px;}
.x20{left:469.005000px;}
.x17{left:478.905000px;}
.x27{left:488.445000px;}
.x11{left:494.205000px;}
.xa{left:504.465000px;}
.x25{left:513.105000px;}
.x1e{left:520.665000px;}
.x16{left:531.645000px;}
.xd{left:560.445000px;}
.x1b{left:566.565000px;}
.x14{left:588.705000px;}
.x23{left:593.385000px;}
.xb{left:649.005000px;}
.x12{left:659.490000px;}
.x21{left:671.910000px;}
.x1c{left:693.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4c{letter-spacing:-5.706667pt;}
.ls4b{letter-spacing:-1.370667pt;}
.ls3d{letter-spacing:-0.524800pt;}
.ls4d{letter-spacing:-0.517333pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls34{letter-spacing:-0.436267pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls48{letter-spacing:-0.312533pt;}
.ls49{letter-spacing:-0.309867pt;}
.ls5{letter-spacing:-0.262400pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.208533pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.089600pt;}
.ls3e{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.046720pt;}
.ls38{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000001pt;}
.ls19{letter-spacing:0.000003pt;}
.ls12{letter-spacing:0.008960pt;}
.ls1b{letter-spacing:0.059520pt;}
.lsb{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.109333pt;}
.ls9{letter-spacing:0.115200pt;}
.ls1e{letter-spacing:0.122880pt;}
.ls22{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls2b{letter-spacing:0.203733pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.263467pt;}
.ls17{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.330240pt;}
.ls14{letter-spacing:0.431360pt;}
.lsa{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.842667pt;}
.ls4e{letter-spacing:1.004800pt;}
.ls3c{letter-spacing:1.280000pt;}
.ls45{letter-spacing:1.644800pt;}
.ls10{letter-spacing:1.920000pt;}
.ls47{letter-spacing:2.122667pt;}
.lsf{letter-spacing:2.560000pt;}
.ls29{letter-spacing:5.120000pt;}
.ls46{letter-spacing:5.484800pt;}
.ls1d{letter-spacing:7.040000pt;}
.lse{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:8.960000pt;}
.ls1a{letter-spacing:10.880000pt;}
.ls31{letter-spacing:12.160000pt;}
.ls16{letter-spacing:14.720000pt;}
.ls23{letter-spacing:16.640000pt;}
.ls15{letter-spacing:17.280000pt;}
.ls25{letter-spacing:18.026667pt;}
.ls24{letter-spacing:18.560000pt;}
.ls44{letter-spacing:21.484800pt;}
.ls41{letter-spacing:22.764800pt;}
.ls40{letter-spacing:23.404800pt;}
.ls42{letter-spacing:24.044800pt;}
.ls3f{letter-spacing:25.324800pt;}
.ls3b{letter-spacing:28.160000pt;}
.ls39{letter-spacing:29.440000pt;}
.ls43{letter-spacing:29.804800pt;}
.ls28{letter-spacing:30.080000pt;}
.ls2d{letter-spacing:30.720000pt;}
.ls32{letter-spacing:31.360000pt;}
.ls2a{letter-spacing:32.640000pt;}
.ls27{letter-spacing:36.480000pt;}
.ls35{letter-spacing:45.568000pt;}
.ls36{letter-spacing:46.208000pt;}
.ls37{letter-spacing:46.848000pt;}
.ls13{letter-spacing:48.768000pt;}
.ls3a{letter-spacing:49.232640pt;}
.ls26{letter-spacing:56.912640pt;}
.ls21{letter-spacing:73.600000pt;}
.ls20{letter-spacing:73.760000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls33{letter-spacing:750.474667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws11{word-spacing:-53.120000pt;}
.ws8{word-spacing:-14.031360pt;}
.wsc{word-spacing:-13.760000pt;}
.wse{word-spacing:-13.696000pt;}
.wsd{word-spacing:-13.632000pt;}
.ws15{word-spacing:-13.504000pt;}
.ws14{word-spacing:-13.440003pt;}
.ws13{word-spacing:-13.440001pt;}
.ws1{word-spacing:-13.440000pt;}
.ws1c{word-spacing:-13.376000pt;}
.ws10{word-spacing:-13.312000pt;}
.ws1d{word-spacing:-13.277867pt;}
.ws18{word-spacing:-13.248000pt;}
.wsa{word-spacing:-13.184000pt;}
.ws9{word-spacing:-13.056000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws1a{word-spacing:-12.991997pt;}
.ws19{word-spacing:-12.736000pt;}
.ws12{word-spacing:-11.997867pt;}
.wsf{word-spacing:-11.358933pt;}
.ws17{word-spacing:-11.270400pt;}
.ws20{word-spacing:-11.164160pt;}
.ws3{word-spacing:-11.155200pt;}
.ws4{word-spacing:-11.108480pt;}
.ws2{word-spacing:-11.065600pt;}
.ws21{word-spacing:-10.946667pt;}
.ws1f{word-spacing:-10.845333pt;}
.ws1e{word-spacing:-10.842667pt;}
.ws6{word-spacing:-10.783360pt;}
.ws5{word-spacing:-10.730240pt;}
.ws16{word-spacing:-10.718933pt;}
.ws24{word-spacing:-10.637867pt;}
.ws1b{word-spacing:-10.630400pt;}
.ws22{word-spacing:-9.784533pt;}
.ws23{word-spacing:-5.448533pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._52{margin-left:-7.122773pt;}
._6{margin-left:-5.877333pt;}
._7{margin-left:-4.462933pt;}
._b{margin-left:-3.515733pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._a{width:0.981333pt;}
._5{width:1.962667pt;}
._15{width:2.944000pt;}
._14{width:4.096000pt;}
._2b{width:5.248000pt;}
._1a{width:6.144000pt;}
._20{width:7.040000pt;}
._24{width:7.936000pt;}
._21{width:8.917333pt;}
._2a{width:9.813333pt;}
._28{width:10.880000pt;}
._1b{width:12.544000pt;}
._50{width:13.791573pt;}
._1e{width:14.762667pt;}
._f{width:15.744000pt;}
._1f{width:16.768000pt;}
._1c{width:17.920000pt;}
._25{width:19.008000pt;}
._34{width:19.946667pt;}
._18{width:20.853333pt;}
._13{width:22.218667pt;}
._12{width:23.381333pt;}
._2e{width:24.426667pt;}
._e{width:25.344000pt;}
._d{width:26.474667pt;}
._11{width:27.392000pt;}
._10{width:28.608000pt;}
._1d{width:29.504000pt;}
._16{width:30.656000pt;}
._17{width:31.552000pt;}
._30{width:32.640000pt;}
._2f{width:33.600000pt;}
._39{width:35.306667pt;}
._44{width:37.026133pt;}
._29{width:38.336000pt;}
._32{width:39.232000pt;}
._41{width:40.960000pt;}
._42{width:42.410667pt;}
._2c{width:43.584000pt;}
._2d{width:44.693333pt;}
._4c{width:46.080000pt;}
._45{width:47.040000pt;}
._48{width:48.490667pt;}
._26{width:49.472000pt;}
._27{width:50.826667pt;}
._33{width:52.928000pt;}
._38{width:54.656000pt;}
._4a{width:55.594667pt;}
._19{width:56.704000pt;}
._35{width:57.856000pt;}
._22{width:59.392000pt;}
._23{width:60.309333pt;}
._31{width:65.536000pt;}
._40{width:73.536000pt;}
._36{width:91.776000pt;}
._37{width:93.504000pt;}
._3e{width:113.216000pt;}
._3f{width:114.432000pt;}
._4f{width:139.121280pt;}
._4e{width:140.449280pt;}
._51{width:147.754667pt;}
._3c{width:152.864000pt;}
._3d{width:165.120000pt;}
._3a{width:175.520000pt;}
._2{width:422.368000pt;}
._8{width:494.459733pt;}
._3{width:1151.626667pt;}
._4b{width:1290.828800pt;}
._4d{width:1292.748800pt;}
._43{width:1295.308800pt;}
._47{width:1296.588800pt;}
._49{width:1298.508800pt;}
._46{width:1301.708800pt;}
._3b{width:1320.268800pt;}
._c{width:1321.548800pt;}
._9{width:1325.431467pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:4.000000pt;}
.ybf{bottom:4.800000pt;}
.yf5{bottom:4.826667pt;}
.y1a{bottom:5.120000pt;}
.yf{bottom:16.480000pt;}
.y3d{bottom:20.000000pt;}
.ybe{bottom:24.000000pt;}
.yf4{bottom:24.026667pt;}
.y180{bottom:24.040000pt;}
.y19{bottom:24.800000pt;}
.ye{bottom:34.880000pt;}
.y3c{bottom:35.994667pt;}
.y18{bottom:40.800000pt;}
.yc6{bottom:43.194667pt;}
.yc9{bottom:43.200000pt;}
.yf3{bottom:43.226667pt;}
.ybd{bottom:43.240000pt;}
.yd{bottom:50.880000pt;}
.y5{bottom:51.200000pt;}
.y3b{bottom:51.994667pt;}
.y17{bottom:57.600000pt;}
.yc5{bottom:62.394667pt;}
.yc8{bottom:62.400000pt;}
.ybc{bottom:62.440000pt;}
.yc{bottom:67.680000pt;}
.y3a{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.y16{bottom:76.800000pt;}
.yc4{bottom:81.594667pt;}
.ye2{bottom:81.600000pt;}
.ye7{bottom:81.640000pt;}
.y39{bottom:84.794667pt;}
.yb{bottom:86.880000pt;}
.y15{bottom:96.000000pt;}
.yc3{bottom:100.794667pt;}
.ye1{bottom:100.800000pt;}
.ye6{bottom:100.840000pt;}
.y1b{bottom:101.472000pt;}
.y1e8{bottom:102.272000pt;}
.y1a0{bottom:103.232000pt;}
.y38{bottom:103.994667pt;}
.y200{bottom:104.192000pt;}
.y21c{bottom:105.792000pt;}
.ya{bottom:106.080000pt;}
.y22d{bottom:106.272000pt;}
.yc0{bottom:106.432000pt;}
.y23d{bottom:107.872000pt;}
.y186{bottom:110.592000pt;}
.y150{bottom:110.912000pt;}
.y27a{bottom:111.552000pt;}
.y258{bottom:112.352000pt;}
.y109{bottom:112.992000pt;}
.y126{bottom:114.272000pt;}
.y6d{bottom:114.432000pt;}
.yed{bottom:114.912000pt;}
.y14{bottom:115.560000pt;}
.y1a2{bottom:117.632000pt;}
.yc2{bottom:119.994667pt;}
.ye0{bottom:120.000000pt;}
.y2b7{bottom:120.032000pt;}
.ye5{bottom:120.040000pt;}
.y1e7{bottom:121.472000pt;}
.y19f{bottom:122.432000pt;}
.y37{bottom:123.194667pt;}
.yb3{bottom:124.992000pt;}
.y22c{bottom:125.472000pt;}
.y9{bottom:125.600000pt;}
.y23c{bottom:127.072000pt;}
.y164{bottom:128.832000pt;}
.y185{bottom:129.792000pt;}
.y14f{bottom:130.112000pt;}
.y279{bottom:130.752000pt;}
.y257{bottom:131.552000pt;}
.y108{bottom:132.192000pt;}
.y125{bottom:133.466667pt;}
.y6c{bottom:133.626667pt;}
.yec{bottom:134.106667pt;}
.y187{bottom:135.066667pt;}
.y2b6{bottom:136.026667pt;}
.y13{bottom:136.360000pt;}
.y1a1{bottom:136.826667pt;}
.y19e{bottom:137.466667pt;}
.yc1{bottom:139.194667pt;}
.y20a{bottom:139.200000pt;}
.ydf{bottom:139.226667pt;}
.ye4{bottom:139.240000pt;}
.y1e6{bottom:140.666667pt;}
.y36{bottom:141.594667pt;}
.yb2{bottom:144.186667pt;}
.y22b{bottom:144.666667pt;}
.y1ff{bottom:145.946667pt;}
.y23b{bottom:146.266667pt;}
.y8{bottom:146.400000pt;}
.y163{bottom:148.026667pt;}
.y184{bottom:148.986667pt;}
.y14e{bottom:149.306667pt;}
.y278{bottom:149.946667pt;}
.y256{bottom:150.746667pt;}
.y107{bottom:151.386667pt;}
.y2b5{bottom:152.026667pt;}
.y124{bottom:152.666667pt;}
.y6b{bottom:152.826667pt;}
.yeb{bottom:153.306667pt;}
.y9a{bottom:156.026667pt;}
.y12{bottom:157.160000pt;}
.y35{bottom:157.594667pt;}
.y209{bottom:158.400000pt;}
.yde{bottom:158.426667pt;}
.y11{bottom:158.440000pt;}
.y1e5{bottom:159.866667pt;}
.yb1{bottom:163.386667pt;}
.y22a{bottom:163.866667pt;}
.y23a{bottom:165.466667pt;}
.y1fe{bottom:166.746667pt;}
.y20b{bottom:167.706667pt;}
.y2b4{bottom:168.026667pt;}
.y183{bottom:168.186667pt;}
.y14d{bottom:168.506667pt;}
.y162{bottom:168.826667pt;}
.y277{bottom:169.146667pt;}
.y255{bottom:169.946667pt;}
.y106{bottom:170.586667pt;}
.y123{bottom:171.866667pt;}
.y6a{bottom:172.026667pt;}
.yea{bottom:172.506667pt;}
.y34{bottom:173.594667pt;}
.y99{bottom:175.226667pt;}
.y19d{bottom:176.506667pt;}
.y208{bottom:177.600000pt;}
.ydd{bottom:177.626667pt;}
.y1e4{bottom:179.066667pt;}
.yb0{bottom:182.586667pt;}
.y229{bottom:183.066667pt;}
.y182{bottom:183.226667pt;}
.y2b3{bottom:184.026667pt;}
.y239{bottom:184.666667pt;}
.y1fd{bottom:185.946667pt;}
.y14c{bottom:187.706667pt;}
.y161{bottom:188.026667pt;}
.y276{bottom:188.346667pt;}
.y254{bottom:189.146667pt;}
.y33{bottom:189.594667pt;}
.y105{bottom:189.786667pt;}
.y122{bottom:191.066667pt;}
.y69{bottom:191.226667pt;}
.ye9{bottom:191.706667pt;}
.y98{bottom:194.426667pt;}
.y207{bottom:196.800000pt;}
.ydc{bottom:196.826667pt;}
.y1e3{bottom:198.266667pt;}
.y2b2{bottom:200.026667pt;}
.yaf{bottom:201.786667pt;}
.y228{bottom:202.266667pt;}
.y238{bottom:203.866667pt;}
.y1fc{bottom:205.146667pt;}
.y32{bottom:205.634667pt;}
.y14b{bottom:206.906667pt;}
.y275{bottom:207.546667pt;}
.y253{bottom:208.346667pt;}
.y104{bottom:208.986667pt;}
.y121{bottom:210.266667pt;}
.y68{bottom:210.426667pt;}
.ye8{bottom:210.906667pt;}
.y97{bottom:213.626667pt;}
.y206{bottom:216.000000pt;}
.ydb{bottom:216.026667pt;}
.y1e2{bottom:217.466667pt;}
.yae{bottom:220.986667pt;}
.y227{bottom:221.466667pt;}
.y31{bottom:221.634667pt;}
.y181{bottom:222.266667pt;}
.y21b{bottom:222.746667pt;}
.y237{bottom:223.066667pt;}
.y1fb{bottom:224.346667pt;}
.ye3{bottom:225.946667pt;}
.y14a{bottom:226.106667pt;}
.y274{bottom:226.746667pt;}
.y252{bottom:227.546667pt;}
.y103{bottom:228.186667pt;}
.y120{bottom:229.466667pt;}
.y67{bottom:229.626667pt;}
.y2b1{bottom:232.026667pt;}
.y96{bottom:232.826667pt;}
.y19c{bottom:234.746667pt;}
.yda{bottom:235.226667pt;}
.y1e1{bottom:236.666667pt;}
.y30{bottom:237.634667pt;}
.yad{bottom:240.186667pt;}
.y226{bottom:240.666667pt;}
.y21a{bottom:241.946667pt;}
.y236{bottom:242.266667pt;}
.y1fa{bottom:243.546667pt;}
.y149{bottom:245.306667pt;}
.y273{bottom:245.946667pt;}
.y251{bottom:246.746667pt;}
.y283{bottom:246.906667pt;}
.y102{bottom:247.386667pt;}
.y2b0{bottom:248.026667pt;}
.y11f{bottom:248.666667pt;}
.y66{bottom:248.826667pt;}
.y95{bottom:252.026667pt;}
.y2f{bottom:253.634667pt;}
.yd9{bottom:254.426667pt;}
.y1e0{bottom:255.866667pt;}
.yac{bottom:259.386667pt;}
.ybb{bottom:260.666667pt;}
.y219{bottom:261.146667pt;}
.y225{bottom:261.466667pt;}
.y1f9{bottom:262.746667pt;}
.y2af{bottom:264.026667pt;}
.y148{bottom:264.506667pt;}
.y272{bottom:265.146667pt;}
.y250{bottom:265.946667pt;}
.y25a{bottom:266.106667pt;}
.y101{bottom:266.586667pt;}
.y11e{bottom:267.866667pt;}
.y65{bottom:268.026667pt;}
.y2e{bottom:269.634667pt;}
.y94{bottom:271.226667pt;}
.yd8{bottom:273.626667pt;}
.y19b{bottom:273.786667pt;}
.y1df{bottom:275.066667pt;}
.yab{bottom:278.586667pt;}
.y2ae{bottom:280.026667pt;}
.y17f{bottom:280.666667pt;}
.y1f8{bottom:281.946667pt;}
.y224{bottom:282.426667pt;}
.y147{bottom:283.706667pt;}
.y271{bottom:284.346667pt;}
.y24f{bottom:285.146667pt;}
.y282{bottom:285.306667pt;}
.y2d{bottom:285.634667pt;}
.y100{bottom:285.786667pt;}
.y11d{bottom:287.066667pt;}
.y64{bottom:287.226667pt;}
.y93{bottom:290.426667pt;}
.yd7{bottom:292.826667pt;}
.y1de{bottom:294.266667pt;}
.y2ad{bottom:296.026667pt;}
.yaa{bottom:297.786667pt;}
.y1f7{bottom:301.186667pt;}
.y2c{bottom:301.634667pt;}
.y235{bottom:301.666667pt;}
.y203{bottom:302.786667pt;}
.y146{bottom:302.946667pt;}
.y223{bottom:303.266667pt;}
.y270{bottom:303.586667pt;}
.y24e{bottom:304.386667pt;}
.y281{bottom:304.546667pt;}
.yff{bottom:305.026667pt;}
.y11c{bottom:306.306667pt;}
.y63{bottom:306.466667pt;}
.y259{bottom:307.906667pt;}
.y92{bottom:309.666667pt;}
.yd6{bottom:312.026667pt;}
.y2ac{bottom:312.066667pt;}
.y19a{bottom:313.026667pt;}
.y1dd{bottom:313.506667pt;}
.ya9{bottom:317.026667pt;}
.y2b{bottom:317.634667pt;}
.y1bc{bottom:318.786667pt;}
.y1f6{bottom:320.386667pt;}
.y145{bottom:322.146667pt;}
.y234{bottom:322.466667pt;}
.y26f{bottom:322.786667pt;}
.y24d{bottom:323.586667pt;}
.y280{bottom:323.746667pt;}
.yfe{bottom:324.226667pt;}
.y11b{bottom:325.506667pt;}
.y62{bottom:325.666667pt;}
.y2ab{bottom:328.066667pt;}
.y91{bottom:328.866667pt;}
.yd5{bottom:331.226667pt;}
.y1dc{bottom:332.706667pt;}
.y2a{bottom:333.634667pt;}
.ya8{bottom:336.226667pt;}
.y1bb{bottom:337.986667pt;}
.y17e{bottom:338.946667pt;}
.y1f5{bottom:339.586667pt;}
.y144{bottom:341.346667pt;}
.y26e{bottom:341.986667pt;}
.y24c{bottom:342.786667pt;}
.yba{bottom:342.946667pt;}
.yfd{bottom:343.426667pt;}
.y2aa{bottom:344.066667pt;}
.y11a{bottom:344.706667pt;}
.y61{bottom:344.866667pt;}
.y90{bottom:348.066667pt;}
.y29{bottom:349.634667pt;}
.yd4{bottom:350.426667pt;}
.y1db{bottom:351.906667pt;}
.ya7{bottom:357.186667pt;}
.y222{bottom:358.466667pt;}
.y1f4{bottom:358.786667pt;}
.y2a9{bottom:360.066667pt;}
.y143{bottom:360.546667pt;}
.y26d{bottom:361.186667pt;}
.y24b{bottom:361.986667pt;}
.yb9{bottom:362.146667pt;}
.yfc{bottom:362.626667pt;}
.y119{bottom:363.906667pt;}
.y60{bottom:364.066667pt;}
.y28{bottom:365.634667pt;}
.y8f{bottom:367.266667pt;}
.yd3{bottom:369.626667pt;}
.y1da{bottom:371.106667pt;}
.y199{bottom:371.266667pt;}
.y2a8{bottom:376.066667pt;}
.ya6{bottom:376.386667pt;}
.y17d{bottom:377.986667pt;}
.y142{bottom:379.746667pt;}
.y26c{bottom:380.386667pt;}
.y24a{bottom:381.186667pt;}
.yb8{bottom:381.346667pt;}
.y27{bottom:381.634667pt;}
.yfb{bottom:381.826667pt;}
.y118{bottom:383.106667pt;}
.y5f{bottom:383.266667pt;}
.y8e{bottom:386.466667pt;}
.y205{bottom:388.826667pt;}
.yd2{bottom:388.866667pt;}
.y1d9{bottom:390.306667pt;}
.y2a7{bottom:392.066667pt;}
.y1ba{bottom:395.586667pt;}
.ya5{bottom:397.186667pt;}
.y26{bottom:397.634667pt;}
.y141{bottom:398.946667pt;}
.yca{bottom:399.586667pt;}
.y249{bottom:400.386667pt;}
.yb7{bottom:400.546667pt;}
.yfa{bottom:401.026667pt;}
.y117{bottom:402.306667pt;}
.y5e{bottom:402.466667pt;}
.y8d{bottom:405.666667pt;}
.y204{bottom:408.026667pt;}
.yd1{bottom:408.066667pt;}
.y1d8{bottom:409.506667pt;}
.y198{bottom:410.306667pt;}
.y25{bottom:414.434667pt;}
.y1b9{bottom:414.786667pt;}
.y1f3{bottom:416.386667pt;}
.y221{bottom:416.706667pt;}
.ya4{bottom:418.146667pt;}
.y26b{bottom:418.786667pt;}
.y248{bottom:419.586667pt;}
.yb6{bottom:419.746667pt;}
.yf9{bottom:420.226667pt;}
.y116{bottom:421.506667pt;}
.y5d{bottom:421.666667pt;}
.y2a6{bottom:424.066667pt;}
.y8c{bottom:424.866667pt;}
.yd0{bottom:427.266667pt;}
.y24{bottom:432.834667pt;}
.y1b8{bottom:433.986667pt;}
.y1f2{bottom:435.586667pt;}
.y17c{bottom:436.226667pt;}
.ya3{bottom:437.346667pt;}
.y26a{bottom:437.986667pt;}
.y247{bottom:438.786667pt;}
.y27f{bottom:438.946667pt;}
.yf8{bottom:439.426667pt;}
.y2a5{bottom:440.066667pt;}
.yb5{bottom:440.706667pt;}
.y5c{bottom:440.866667pt;}
.y8b{bottom:444.066667pt;}
.ycf{bottom:446.466667pt;}
.y23{bottom:448.861333pt;}
.y197{bottom:449.346667pt;}
.y1b7{bottom:453.186667pt;}
.y1f1{bottom:454.786667pt;}
.y220{bottom:455.746667pt;}
.y2a4{bottom:456.066667pt;}
.ya2{bottom:456.546667pt;}
.y269{bottom:457.186667pt;}
.y246{bottom:457.986667pt;}
.y27e{bottom:458.146667pt;}
.yf7{bottom:458.626667pt;}
.y115{bottom:459.906667pt;}
.y5b{bottom:460.066667pt;}
.yb4{bottom:461.506667pt;}
.y8a{bottom:463.266667pt;}
.y22{bottom:464.861333pt;}
.yce{bottom:465.666667pt;}
.y2a3{bottom:472.066667pt;}
.y1b6{bottom:472.386667pt;}
.yf6{bottom:473.666667pt;}
.y1f0{bottom:473.986667pt;}
.y17b{bottom:475.266667pt;}
.y140{bottom:475.746667pt;}
.y268{bottom:476.386667pt;}
.y245{bottom:477.186667pt;}
.ya1{bottom:477.346667pt;}
.y15c{bottom:477.826667pt;}
.y114{bottom:479.106667pt;}
.y5a{bottom:479.266667pt;}
.y21{bottom:480.861333pt;}
.y1d7{bottom:480.866667pt;}
.y89{bottom:482.466667pt;}
.ycd{bottom:484.866667pt;}
.y2a2{bottom:488.066667pt;}
.y2d6{bottom:491.266667pt;}
.y1b5{bottom:491.586667pt;}
.y196{bottom:493.186667pt;}
.y13f{bottom:494.946667pt;}
.y267{bottom:495.586667pt;}
.y244{bottom:496.386667pt;}
.ya0{bottom:496.546667pt;}
.y20{bottom:496.861333pt;}
.y15b{bottom:497.026667pt;}
.y113{bottom:498.306667pt;}
.y59{bottom:498.466667pt;}
.y17a{bottom:499.906667pt;}
.y1d6{bottom:500.066667pt;}
.y88{bottom:501.666667pt;}
.ycc{bottom:504.066667pt;}
.y2d5{bottom:507.266667pt;}
.y1b4{bottom:510.786667pt;}
.y195{bottom:512.386667pt;}
.y1f{bottom:512.861333pt;}
.y21f{bottom:513.986667pt;}
.y13e{bottom:514.146667pt;}
.y266{bottom:514.786667pt;}
.y243{bottom:515.586667pt;}
.y27d{bottom:515.746667pt;}
.y15a{bottom:516.226667pt;}
.y9f{bottom:517.506667pt;}
.y58{bottom:517.666667pt;}
.y179{bottom:519.106667pt;}
.y1d5{bottom:519.266667pt;}
.y2a1{bottom:520.066667pt;}
.y87{bottom:520.866667pt;}
.ycb{bottom:523.266667pt;}
.y1e{bottom:528.861333pt;}
.y1b3{bottom:529.986667pt;}
.y242{bottom:530.626667pt;}
.y210{bottom:531.266667pt;}
.y194{bottom:531.586667pt;}
.yf2{bottom:531.906667pt;}
.y13d{bottom:533.346667pt;}
.y265{bottom:533.986667pt;}
.y27c{bottom:534.946667pt;}
.y159{bottom:535.426667pt;}
.y2a0{bottom:536.066667pt;}
.y9e{bottom:536.733333pt;}
.y57{bottom:536.893333pt;}
.y178{bottom:538.333333pt;}
.y1d4{bottom:538.493333pt;}
.y2d4{bottom:539.293333pt;}
.y86{bottom:540.093333pt;}
.y1d{bottom:545.981333pt;}
.y1c{bottom:547.261333pt;}
.y1b2{bottom:549.213333pt;}
.y193{bottom:550.813333pt;}
.y29f{bottom:552.093333pt;}
.y13c{bottom:552.573333pt;}
.y264{bottom:553.213333pt;}
.y27b{bottom:554.173333pt;}
.y158{bottom:554.653333pt;}
.y2d3{bottom:555.293333pt;}
.y9d{bottom:555.933333pt;}
.y56{bottom:556.093333pt;}
.y177{bottom:557.533333pt;}
.y1d3{bottom:557.693333pt;}
.y85{bottom:559.293333pt;}
.y29e{bottom:568.093333pt;}
.y1b1{bottom:568.413333pt;}
.y192{bottom:570.013333pt;}
.y20f{bottom:570.333333pt;}
.y2d2{bottom:571.293333pt;}
.y13b{bottom:571.773333pt;}
.y21e{bottom:572.413333pt;}
.y157{bottom:573.853333pt;}
.y9c{bottom:575.133333pt;}
.y55{bottom:575.293333pt;}
.y176{bottom:576.733333pt;}
.y1d2{bottom:576.893333pt;}
.y84{bottom:578.493333pt;}
.y29d{bottom:584.093333pt;}
.y2d1{bottom:587.293333pt;}
.y1b0{bottom:587.613333pt;}
.y156{bottom:588.893333pt;}
.y191{bottom:589.213333pt;}
.yf1{bottom:590.173333pt;}
.y13a{bottom:590.973333pt;}
.y263{bottom:591.613333pt;}
.y233{bottom:593.053333pt;}
.y112{bottom:594.333333pt;}
.y54{bottom:594.493333pt;}
.y9b{bottom:595.933333pt;}
.y1d1{bottom:596.093333pt;}
.y83{bottom:597.693333pt;}
.y29c{bottom:600.093333pt;}
.y2d0{bottom:603.293333pt;}
.y1af{bottom:606.813333pt;}
.y190{bottom:608.413333pt;}
.y20e{bottom:609.373333pt;}
.y139{bottom:610.173333pt;}
.y262{bottom:610.813333pt;}
.y232{bottom:612.253333pt;}
.y111{bottom:613.533333pt;}
.y53{bottom:613.693333pt;}
.y175{bottom:615.133333pt;}
.y1d0{bottom:615.293333pt;}
.y29b{bottom:616.093333pt;}
.y82{bottom:616.893333pt;}
.y2cf{bottom:619.293333pt;}
.y1ae{bottom:626.013333pt;}
.y231{bottom:627.293333pt;}
.y18f{bottom:627.613333pt;}
.y241{bottom:627.933333pt;}
.y138{bottom:629.373333pt;}
.y261{bottom:630.013333pt;}
.y21d{bottom:630.653333pt;}
.y29a{bottom:632.093333pt;}
.y110{bottom:632.733333pt;}
.y52{bottom:632.893333pt;}
.y174{bottom:634.333333pt;}
.y1cf{bottom:634.493333pt;}
.y2ce{bottom:635.293333pt;}
.y81{bottom:636.093333pt;}
.y1ad{bottom:645.213333pt;}
.y18e{bottom:646.813333pt;}
.y299{bottom:648.093333pt;}
.yf0{bottom:648.413333pt;}
.y137{bottom:648.573333pt;}
.y260{bottom:649.213333pt;}
.y2cd{bottom:651.293333pt;}
.y10f{bottom:651.933333pt;}
.y51{bottom:652.093333pt;}
.y173{bottom:653.533333pt;}
.y1ce{bottom:653.693333pt;}
.y80{bottom:655.293333pt;}
.y10{bottom:663.773333pt;}
.y298{bottom:664.093333pt;}
.y1ac{bottom:664.413333pt;}
.y18d{bottom:666.013333pt;}
.y240{bottom:666.973333pt;}
.y2cc{bottom:667.293333pt;}
.y136{bottom:667.773333pt;}
.y10e{bottom:671.133333pt;}
.y50{bottom:671.293333pt;}
.y172{bottom:672.733333pt;}
.y1cd{bottom:672.893333pt;}
.y7f{bottom:674.493333pt;}
.y297{bottom:680.093333pt;}
.y2cb{bottom:683.293333pt;}
.y1ab{bottom:683.613333pt;}
.y18c{bottom:685.213333pt;}
.y155{bottom:685.533333pt;}
.y135{bottom:686.973333pt;}
.y20d{bottom:687.613333pt;}
.y10d{bottom:690.333333pt;}
.y4f{bottom:690.493333pt;}
.y171{bottom:691.933333pt;}
.y1cc{bottom:692.093333pt;}
.y7e{bottom:693.693333pt;}
.y296{bottom:696.093333pt;}
.y2ca{bottom:699.293333pt;}
.y25f{bottom:703.453333pt;}
.y18b{bottom:704.413333pt;}
.y23f{bottom:706.013333pt;}
.y134{bottom:706.173333pt;}
.yef{bottom:706.813333pt;}
.y10c{bottom:709.533333pt;}
.y4e{bottom:709.693333pt;}
.y170{bottom:711.133333pt;}
.y1cb{bottom:711.293333pt;}
.y295{bottom:712.093333pt;}
.y7d{bottom:712.893333pt;}
.y2c9{bottom:715.293333pt;}
.y18a{bottom:723.613333pt;}
.y160{bottom:724.573333pt;}
.y133{bottom:725.373333pt;}
.y202{bottom:726.013333pt;}
.y20c{bottom:726.653333pt;}
.y294{bottom:728.093333pt;}
.y218{bottom:728.733333pt;}
.y4d{bottom:728.893333pt;}
.y10b{bottom:730.333333pt;}
.y1ca{bottom:730.493333pt;}
.y2c8{bottom:731.293333pt;}
.y7c{bottom:732.093333pt;}
.y25e{bottom:742.493333pt;}
.y1ef{bottom:742.813333pt;}
.y154{bottom:743.773333pt;}
.y293{bottom:744.093333pt;}
.y132{bottom:744.573333pt;}
.y23e{bottom:745.213333pt;}
.y2c7{bottom:747.293333pt;}
.y217{bottom:747.933333pt;}
.y4c{bottom:748.093333pt;}
.y10a{bottom:749.533333pt;}
.y1c9{bottom:749.693333pt;}
.y7b{bottom:751.293333pt;}
.y292{bottom:760.093333pt;}
.y1ee{bottom:762.013333pt;}
.y2c6{bottom:763.293333pt;}
.y230{bottom:763.613333pt;}
.y131{bottom:763.773333pt;}
.y189{bottom:765.373333pt;}
.y216{bottom:767.133333pt;}
.y4b{bottom:767.293333pt;}
.y16f{bottom:768.733333pt;}
.y1c8{bottom:768.893333pt;}
.y7a{bottom:770.493333pt;}
.y291{bottom:776.133333pt;}
.y2c5{bottom:779.333333pt;}
.y1ed{bottom:781.253333pt;}
.y25d{bottom:781.573333pt;}
.y15f{bottom:782.853333pt;}
.y130{bottom:783.013333pt;}
.yee{bottom:784.293333pt;}
.y1aa{bottom:784.613333pt;}
.y188{bottom:786.373333pt;}
.y4a{bottom:786.533333pt;}
.y16e{bottom:787.973333pt;}
.y1c7{bottom:788.133333pt;}
.y79{bottom:789.733333pt;}
.y290{bottom:792.133333pt;}
.y2c4{bottom:795.333333pt;}
.y1ec{bottom:800.453333pt;}
.y12f{bottom:802.213333pt;}
.y1a9{bottom:803.813333pt;}
.y215{bottom:805.573333pt;}
.y49{bottom:805.733333pt;}
.y16d{bottom:807.173333pt;}
.y1c6{bottom:807.333333pt;}
.y28f{bottom:808.133333pt;}
.y78{bottom:808.933333pt;}
.y2c3{bottom:811.333333pt;}
.y1eb{bottom:819.653333pt;}
.y25c{bottom:820.613333pt;}
.y153{bottom:821.253333pt;}
.y12e{bottom:821.413333pt;}
.y22f{bottom:822.053333pt;}
.y1a8{bottom:823.013333pt;}
.y28e{bottom:824.133333pt;}
.y214{bottom:824.773333pt;}
.y48{bottom:824.933333pt;}
.y16c{bottom:826.373333pt;}
.y1c5{bottom:826.533333pt;}
.y2c2{bottom:827.333333pt;}
.y77{bottom:828.133333pt;}
.y7{bottom:837.253333pt;}
.y1ea{bottom:838.853333pt;}
.y28d{bottom:840.133333pt;}
.y12d{bottom:840.613333pt;}
.y1a7{bottom:842.213333pt;}
.y2c1{bottom:843.333333pt;}
.y213{bottom:843.973333pt;}
.y47{bottom:844.133333pt;}
.y16b{bottom:845.573333pt;}
.y1c4{bottom:845.733333pt;}
.y76{bottom:847.333333pt;}
.y28c{bottom:856.133333pt;}
.y2c0{bottom:859.333333pt;}
.y25b{bottom:859.653333pt;}
.y1e9{bottom:859.813333pt;}
.y15e{bottom:860.453333pt;}
.y12c{bottom:861.413333pt;}
.y212{bottom:863.173333pt;}
.y46{bottom:863.333333pt;}
.y16a{bottom:864.773333pt;}
.y1c3{bottom:864.933333pt;}
.y75{bottom:866.533333pt;}
.y28b{bottom:872.133333pt;}
.y2bf{bottom:875.333333pt;}
.y22e{bottom:880.293333pt;}
.y12b{bottom:880.613333pt;}
.y211{bottom:882.373333pt;}
.y45{bottom:882.533333pt;}
.y169{bottom:883.973333pt;}
.y1c2{bottom:884.133333pt;}
.y74{bottom:885.733333pt;}
.y28a{bottom:888.133333pt;}
.y2be{bottom:891.333333pt;}
.y152{bottom:898.853333pt;}
.y201{bottom:899.493333pt;}
.y1a6{bottom:899.813333pt;}
.y12a{bottom:901.573333pt;}
.y44{bottom:901.733333pt;}
.y168{bottom:903.173333pt;}
.y1c1{bottom:903.333333pt;}
.y289{bottom:904.133333pt;}
.y73{bottom:904.933333pt;}
.y2bd{bottom:907.333333pt;}
.y15d{bottom:918.693333pt;}
.y1a5{bottom:919.013333pt;}
.y288{bottom:920.133333pt;}
.y129{bottom:920.773333pt;}
.y43{bottom:920.933333pt;}
.y167{bottom:922.373333pt;}
.y1c0{bottom:922.533333pt;}
.y2bc{bottom:923.333333pt;}
.y72{bottom:924.133333pt;}
.y287{bottom:936.133333pt;}
.yc7{bottom:937.893333pt;}
.y2bb{bottom:939.333333pt;}
.y1a4{bottom:939.973333pt;}
.y42{bottom:940.133333pt;}
.y128{bottom:941.573333pt;}
.y1bf{bottom:941.733333pt;}
.y71{bottom:943.333333pt;}
.y286{bottom:952.133333pt;}
.y2ba{bottom:955.333333pt;}
.y151{bottom:957.093333pt;}
.y1a3{bottom:959.173333pt;}
.y41{bottom:959.333333pt;}
.y127{bottom:960.773333pt;}
.y1be{bottom:960.933333pt;}
.y70{bottom:962.533333pt;}
.y285{bottom:968.133333pt;}
.y2b9{bottom:971.333333pt;}
.y40{bottom:978.853333pt;}
.y166{bottom:979.973333pt;}
.y1bd{bottom:980.133333pt;}
.y6f{bottom:981.733333pt;}
.y284{bottom:984.133333pt;}
.y2b8{bottom:987.333333pt;}
.y165{bottom:999.173333pt;}
.y3f{bottom:999.653333pt;}
.y6e{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.hf{height:19.200000pt;}
.h12{height:38.400000pt;}
.h15{height:38.432000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h10{height:57.600000pt;}
.h11{height:57.632000pt;}
.h7{height:59.788800pt;}
.h13{height:76.800000pt;}
.hc{height:76.832000pt;}
.h14{height:96.000000pt;}
.h17{height:134.426667pt;}
.hd{height:153.600000pt;}
.h6{height:162.080000pt;}
.h8{height:172.826667pt;}
.h16{height:422.426667pt;}
.he{height:537.666667pt;}
.h9{height:561.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:65.152000pt;}
.w6{width:75.040000pt;}
.w8{width:79.072000pt;}
.w1c{width:81.440000pt;}
.w1b{width:82.592000pt;}
.w20{width:101.120000pt;}
.w1e{width:108.512000pt;}
.w1f{width:112.192000pt;}
.w9{width:127.840000pt;}
.w27{width:130.560000pt;}
.w11{width:131.360000pt;}
.wa{width:141.146667pt;}
.w10{width:146.266667pt;}
.w7{width:150.266667pt;}
.w1d{width:152.186667pt;}
.we{width:159.706667pt;}
.w24{width:169.146667pt;}
.w19{width:169.306667pt;}
.w25{width:170.146667pt;}
.w2e{width:175.266667pt;}
.w2b{width:176.706667pt;}
.w22{width:177.626667pt;}
.w18{width:178.786667pt;}
.w26{width:179.546667pt;}
.w3{width:179.746667pt;}
.w15{width:180.546667pt;}
.w2f{width:181.306667pt;}
.w2a{width:190.106667pt;}
.w14{width:194.266667pt;}
.w12{width:195.746667pt;}
.w28{width:200.866667pt;}
.w2c{width:201.626667pt;}
.wf{width:201.986667pt;}
.wc{width:207.386667pt;}
.w21{width:207.426667pt;}
.wb{width:212.866667pt;}
.w16{width:214.266667pt;}
.wd{width:219.386667pt;}
.w17{width:244.986667pt;}
.w29{width:248.986667pt;}
.w13{width:249.946667pt;}
.w23{width:254.746667pt;}
.w2d{width:261.466667pt;}
.w30{width:283.386667pt;}
.w1a{width:291.866667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x28{left:94.431988pt;}
.xe{left:99.551988pt;}
.xf{left:123.551988pt;}
.x7{left:142.106667pt;}
.x5{left:146.746655pt;}
.x18{left:159.546667pt;}
.x2{left:169.146667pt;}
.x6{left:170.746655pt;}
.x8{left:217.786667pt;}
.x10{left:236.666667pt;}
.x19{left:241.626667pt;}
.x1f{left:246.106667pt;}
.x26{left:252.226667pt;}
.x24{left:253.666667pt;}
.x3{left:255.266667pt;}
.x15{left:257.506667pt;}
.x13{left:272.706667pt;}
.x22{left:277.826667pt;}
.x1d{left:284.546667pt;}
.xc{left:289.986667pt;}
.x9{left:368.706667pt;}
.x1a{left:394.466667pt;}
.x20{left:416.893333pt;}
.x17{left:425.693333pt;}
.x27{left:434.173333pt;}
.x11{left:439.293333pt;}
.xa{left:448.413333pt;}
.x25{left:456.093333pt;}
.x1e{left:462.813333pt;}
.x16{left:472.573333pt;}
.xd{left:498.173333pt;}
.x1b{left:503.613333pt;}
.x14{left:523.293333pt;}
.x23{left:527.453333pt;}
.xb{left:576.893333pt;}
.x12{left:586.213333pt;}
.x21{left:597.253333pt;}
.x1c{left:616.453333pt;}
}




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