
    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_c362c89ee509a06783c6e0ee.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_86bb4a30938f88ccce965130.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_00873b9542db40b8c87ef75a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_81813f18f6911d9abb902e46.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e62cba215c287ded98aa8a0d.woff')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_53decc2c03a26db2b87bc5e0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_72a3fcf77027e5c944eb2bb7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_062734d36370b0baf045e7dd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2b99a4ab8db5621ed4e994ed.woff')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_2213bed36eac4aef68397303.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2e19b12814cbe073ecc89dc8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0b9d65f356ddc6b970f207cc.woff')format("woff");}.ffe{font-family:ffe;line-height:0.694336;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);}
.v3{vertical-align:-75.600000px;}
.v4{vertical-align:-74.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.457800px;}
.ls1c{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.152400px;}
.lsf{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.025920px;}
.ls14{letter-spacing:0.034560px;}
.ls17{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.119520px;}
.lse{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.262200px;}
.ls20{letter-spacing:0.305280px;}
.ls1f{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.567600px;}
.ls11{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.ls10{letter-spacing:5.760000px;}
.lsa{letter-spacing:12.960000px;}
.ls22{letter-spacing:39.881280px;}
.ls21{letter-spacing:43.481280px;}
.ls18{letter-spacing:59.321280px;}
.ls1d{letter-spacing:2225.976000px;}
.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;}
.wsf{word-spacing:-66.240000px;}
.ws1{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws8{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.280000px;}
.ws17{word-spacing:-17.127600px;}
.ws16{word-spacing:-16.865400px;}
.ws19{word-spacing:-16.669200px;}
.ws11{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.407600px;}
.ws10{word-spacing:-16.297800px;}
.ws14{word-spacing:-16.145400px;}
.ws18{word-spacing:-15.948000px;}
.wsc{word-spacing:-15.840000px;}
.ws15{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-12.060000px;}
.ws13{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._10{margin-left:-4.464000px;}
._f{margin-left:-2.952000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._14{width:3.677040px;}
._5{width:4.953360px;}
._13{width:6.309840px;}
._e{width:7.410480px;}
._9{width:9.000000px;}
._a{width:10.288080px;}
._11{width:12.131280px;}
._12{width:13.150800px;}
._b{width:14.544000px;}
._15{width:16.488000px;}
._18{width:19.488000px;}
._19{width:20.780160px;}
._6{width:21.888000px;}
._7{width:23.004000px;}
._8{width:24.150480px;}
._1d{width:25.223040px;}
._c{width:26.640000px;}
._d{width:28.218480px;}
._23{width:30.600000px;}
._24{width:31.608000px;}
._22{width:32.893680px;}
._21{width:34.346400px;}
._20{width:35.352000px;}
._1b{width:36.360000px;}
._1c{width:37.440000px;}
._17{width:39.669600px;}
._16{width:40.970400px;}
._1a{width:42.840000px;}
._1e{width:44.712000px;}
._1f{width:45.928080px;}
._26{width:244.260000px;}
._25{width:491.016000px;}
._2{width:532.260000px;}
._27{width:1476.667680px;}
._3{width:1513.257360px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1d7{bottom:3.585000px;}
.y1c8{bottom:3.600000px;}
.y260{bottom:3.630000px;}
.y218{bottom:3.765000px;}
.y1ce{bottom:3.780000px;}
.y280{bottom:3.810000px;}
.y214{bottom:3.945000px;}
.y1cc{bottom:3.960000px;}
.y28c{bottom:3.990000px;}
.y1da{bottom:4.125000px;}
.y1ca{bottom:4.140000px;}
.y1e6{bottom:4.170000px;}
.ycb{bottom:4.485000px;}
.y115{bottom:4.491000px;}
.yaa{bottom:4.500000px;}
.ya9{bottom:4.515000px;}
.y21b{bottom:4.665000px;}
.y290{bottom:13.485000px;}
.y210{bottom:13.500000px;}
.y216{bottom:13.845000px;}
.y1f7{bottom:13.860000px;}
.yce{bottom:14.745000px;}
.yf5{bottom:14.760000px;}
.yc9{bottom:14.790000px;}
.yd2{bottom:14.925000px;}
.y242{bottom:14.940000px;}
.y27e{bottom:15.120000px;}
.y236{bottom:15.150000px;}
.ya5{bottom:15.315000px;}
.y292{bottom:22.845000px;}
.y251{bottom:22.860000px;}
.y28e{bottom:23.025000px;}
.y1dd{bottom:23.040000px;}
.y2a8{bottom:23.085000px;}
.y21a{bottom:23.745000px;}
.y227{bottom:24.120000px;}
.ycd{bottom:25.185000px;}
.ya7{bottom:25.200000px;}
.yca{bottom:25.230000px;}
.yd1{bottom:25.545000px;}
.ya2{bottom:25.575000px;}
.y282{bottom:26.100000px;}
.y2a0{bottom:28.620000px;}
.ya4{bottom:36.015000px;}
.y7{bottom:39.276000px;}
.y20c{bottom:41.940000px;}
.y22d{bottom:41.970000px;}
.y274{bottom:42.120000px;}
.y2a9{bottom:42.165000px;}
.y296{bottom:45.000000px;}
.yd0{bottom:46.245000px;}
.ya0{bottom:46.260000px;}
.y239{bottom:47.505000px;}
.y29f{bottom:47.550000px;}
.y246{bottom:50.940000px;}
.ya3{bottom:56.700000px;}
.y6{bottom:58.536000px;}
.y295{bottom:63.900000px;}
.y245{bottom:70.020000px;}
.y26b{bottom:91.800000px;}
.y2b{bottom:131.076000px;}
.y199{bottom:132.156000px;}
.y15d{bottom:135.396000px;}
.y2a{bottom:136.296000px;}
.y72{bottom:138.096000px;}
.y293{bottom:139.896000px;}
.y23e{bottom:141.156000px;}
.y258{bottom:141.480000px;}
.y21e{bottom:143.136000px;}
.y1c5{bottom:143.496000px;}
.y114{bottom:143.865000px;}
.y13d{bottom:145.656000px;}
.y29{bottom:149.256000px;}
.y291{bottom:154.845000px;}
.y15c{bottom:156.090000px;}
.y1f4{bottom:157.890000px;}
.y71{bottom:158.790000px;}
.y21d{bottom:159.165000px;}
.y23d{bottom:160.590000px;}
.yed{bottom:164.190000px;}
.y113{bottom:165.285000px;}
.y13c{bottom:166.350000px;}
.y9e{bottom:167.790000px;}
.y185{bottom:168.510000px;}
.y198{bottom:170.850000px;}
.y8c{bottom:171.390000px;}
.ycf{bottom:174.645000px;}
.y15b{bottom:176.790000px;}
.y23c{bottom:178.425000px;}
.y219{bottom:178.965000px;}
.y70{bottom:179.490000px;}
.y1c4{bottom:182.190000px;}
.y169{bottom:184.890000px;}
.y28{bottom:186.510000px;}
.y112{bottom:186.705000px;}
.y13b{bottom:187.050000px;}
.y184{bottom:189.210000px;}
.y51{bottom:190.290000px;}
.y8b{bottom:192.090000px;}
.y1f3{bottom:194.610000px;}
.y28f{bottom:195.705000px;}
.y15a{bottom:197.490000px;}
.y238{bottom:197.505000px;}
.y21c{bottom:198.585000px;}
.yec{bottom:202.710000px;}
.y168{bottom:205.590000px;}
.y9d{bottom:206.490000px;}
.y27{bottom:207.210000px;}
.y13a{bottom:207.750000px;}
.y111{bottom:208.125000px;}
.y197{bottom:209.550000px;}
.y183{bottom:209.910000px;}
.y50{bottom:210.990000px;}
.y8a{bottom:212.790000px;}
.ycc{bottom:216.945000px;}
.y6f{bottom:218.190000px;}
.y215{bottom:218.385000px;}
.y23b{bottom:219.465000px;}
.y1c3{bottom:220.890000px;}
.y110{bottom:229.545000px;}
.y1f2{bottom:231.510000px;}
.y4f{bottom:231.690000px;}
.y89{bottom:233.490000px;}
.y28d{bottom:233.685000px;}
.y159{bottom:236.190000px;}
.y217{bottom:238.005000px;}
.y6e{bottom:238.890000px;}
.y23a{bottom:241.425000px;}
.yeb{bottom:241.590000px;}
.y167{bottom:244.290000px;}
.y9c{bottom:245.190000px;}
.y26{bottom:245.910000px;}
.y139{bottom:246.450000px;}
.y182{bottom:248.610000px;}
.y10f{bottom:251.145000px;}
.y4e{bottom:252.390000px;}
.y158{bottom:256.890000px;}
.y213{bottom:257.805000px;}
.yc8{bottom:259.065000px;}
.y6d{bottom:259.590000px;}
.yea{bottom:262.290000px;}
.y235{bottom:263.385000px;}
.y166{bottom:264.990000px;}
.y25{bottom:266.610000px;}
.y138{bottom:267.150000px;}
.y1f1{bottom:268.230000px;}
.y181{bottom:269.310000px;}
.y28b{bottom:271.665000px;}
.y88{bottom:272.190000px;}
.y10e{bottom:272.595000px;}
.y4d{bottom:273.135000px;}
.y157{bottom:277.635000px;}
.y1c2{bottom:278.535000px;}
.y9b{bottom:283.935000px;}
.y237{bottom:285.375000px;}
.y165{bottom:285.735000px;}
.y194{bottom:287.355000px;}
.y137{bottom:287.895000px;}
.y28a{bottom:290.595000px;}
.y87{bottom:292.935000px;}
.y4c{bottom:293.835000px;}
.y10d{bottom:294.015000px;}
.y1c1{bottom:297.435000px;}
.y6c{bottom:298.335000px;}
.ye9{bottom:301.035000px;}
.y212{bottom:301.395000px;}
.y24{bottom:305.175000px;}
.y234{bottom:307.335000px;}
.y180{bottom:308.055000px;}
.y289{bottom:312.555000px;}
.y86{bottom:313.635000px;}
.y10c{bottom:315.435000px;}
.y156{bottom:316.335000px;}
.y1c0{bottom:316.515000px;}
.y211{bottom:317.055000px;}
.y6b{bottom:319.035000px;}
.yc7{bottom:320.475000px;}
.y266{bottom:320.835000px;}
.ye8{bottom:321.735000px;}
.y9a{bottom:322.635000px;}
.y164{bottom:324.435000px;}
.y193{bottom:326.055000px;}
.y233{bottom:326.415000px;}
.y136{bottom:326.595000px;}
.y17f{bottom:328.755000px;}
.y4b{bottom:332.535000px;}
.y85{bottom:334.335000px;}
.y1bf{bottom:335.415000px;}
.y265{bottom:335.775000px;}
.y10b{bottom:336.855000px;}
.y155{bottom:337.035000px;}
.y6a{bottom:339.735000px;}
.y1f0{bottom:341.895000px;}
.y23{bottom:345.135000px;}
.y192{bottom:346.755000px;}
.y135{bottom:347.295000px;}
.y232{bottom:349.275000px;}
.y17e{bottom:349.455000px;}
.y4a{bottom:353.235000px;}
.y1be{bottom:354.495000px;}
.y84{bottom:355.035000px;}
.y20f{bottom:355.755000px;}
.y154{bottom:357.735000px;}
.y10a{bottom:358.275000px;}
.yc6{bottom:359.355000px;}
.y69{bottom:360.435000px;}
.y99{bottom:361.335000px;}
.y22{bottom:362.235000px;}
.y231{bottom:364.215000px;}
.y191{bottom:367.455000px;}
.y134{bottom:367.995000px;}
.y288{bottom:372.495000px;}
.y1bd{bottom:373.395000px;}
.y49{bottom:373.935000px;}
.y83{bottom:375.735000px;}
.y264{bottom:376.815000px;}
.y1ef{bottom:377.535000px;}
.y153{bottom:378.435000px;}
.y21{bottom:379.515000px;}
.y109{bottom:379.695000px;}
.yc5{bottom:380.055000px;}
.ye7{bottom:380.955000px;}
.y68{bottom:381.135000px;}
.y163{bottom:383.835000px;}
.y17d{bottom:388.155000px;}
.y133{bottom:388.695000px;}
.y1bc{bottom:391.935000px;}
.y20e{bottom:394.455000px;}
.y287{bottom:395.175000px;}
.y1ee{bottom:397.335000px;}
.y152{bottom:399.135000px;}
.y98{bottom:399.855000px;}
.yc4{bottom:400.755000px;}
.y108{bottom:401.295000px;}
.y67{bottom:401.835000px;}
.y162{bottom:404.535000px;}
.y230{bottom:405.255000px;}
.y190{bottom:406.155000px;}
.y17c{bottom:408.855000px;}
.y132{bottom:409.395000px;}
.y48{bottom:412.995000px;}
.y1bb{bottom:413.175000px;}
.y82{bottom:414.075000px;}
.y263{bottom:414.795000px;}
.y20{bottom:415.515000px;}
.y1ed{bottom:416.955000px;}
.y2a5{bottom:419.295000px;}
.y151{bottom:419.835000px;}
.ye6{bottom:421.095000px;}
.yc3{bottom:421.455000px;}
.y107{bottom:422.715000px;}
.y18f{bottom:426.855000px;}
.y17b{bottom:429.555000px;}
.y131{bottom:430.095000px;}
.y20d{bottom:433.155000px;}
.y286{bottom:433.515000px;}
.y1ba{bottom:434.415000px;}
.y1f{bottom:436.215000px;}
.y1ec{bottom:436.755000px;}
.y97{bottom:438.735000px;}
.y66{bottom:440.535000px;}
.ye5{bottom:441.795000px;}
.y161{bottom:443.235000px;}
.y18e{bottom:447.555000px;}
.y285{bottom:452.415000px;}
.y47{bottom:452.775000px;}
.y1b9{bottom:453.855000px;}
.y81{bottom:454.755000px;}
.y1eb{bottom:456.375000px;}
.y2a4{bottom:457.995000px;}
.y150{bottom:458.535000px;}
.y96{bottom:459.435000px;}
.yc2{bottom:460.155000px;}
.y65{bottom:461.235000px;}
.ye4{bottom:462.495000px;}
.y106{bottom:463.395000px;}
.y160{bottom:463.935000px;}
.y17a{bottom:468.255000px;}
.y130{bottom:468.795000px;}
.y284{bottom:470.415000px;}
.y262{bottom:471.675000px;}
.y20b{bottom:472.575000px;}
.y1b8{bottom:472.755000px;}
.y80{bottom:475.455000px;}
.y1ea{bottom:476.175000px;}
.y1e{bottom:476.715000px;}
.y14f{bottom:479.235000px;}
.y95{bottom:480.135000px;}
.yc1{bottom:480.855000px;}
.y22f{bottom:481.215000px;}
.y64{bottom:481.935000px;}
.ye3{bottom:483.195000px;}
.y18d{bottom:486.255000px;}
.y179{bottom:488.955000px;}
.y281{bottom:489.315000px;}
.y12f{bottom:489.495000px;}
.y1b7{bottom:491.655000px;}
.y46{bottom:493.455000px;}
.y261{bottom:493.635000px;}
.y2a3{bottom:495.255000px;}
.y1e9{bottom:495.795000px;}
.y7f{bottom:496.155000px;}
.y1d{bottom:497.415000px;}
.y14e{bottom:499.935000px;}
.y22e{bottom:500.115000px;}
.yc0{bottom:501.555000px;}
.y105{bottom:502.275000px;}
.y63{bottom:502.635000px;}
.ye2{bottom:503.895000px;}
.y18c{bottom:506.955000px;}
.y12e{bottom:510.195000px;}
.y1b6{bottom:510.735000px;}
.y283{bottom:511.275000px;}
.y45{bottom:514.155000px;}
.y29e{bottom:514.335000px;}
.y1e8{bottom:515.595000px;}
.y7e{bottom:516.855000px;}
.y1c{bottom:518.115000px;}
.y94{bottom:518.835000px;}
.y14d{bottom:520.635000px;}
.y22c{bottom:522.075000px;}
.y104{bottom:522.975000px;}
.y62{bottom:523.335000px;}
.y178{bottom:527.655000px;}
.y1b5{bottom:529.635000px;}
.y20a{bottom:530.175000px;}
.y12d{bottom:530.895000px;}
.y27d{bottom:533.235000px;}
.y44{bottom:534.855000px;}
.y1e7{bottom:535.395000px;}
.y2a2{bottom:536.295000px;}
.y7d{bottom:537.555000px;}
.y1b{bottom:538.815000px;}
.ye1{bottom:538.995000px;}
.y93{bottom:539.535000px;}
.y14c{bottom:541.335000px;}
.ybf{bottom:541.695000px;}
.y103{bottom:543.675000px;}
.y61{bottom:543.855000px;}
.y177{bottom:548.355000px;}
.y1b4{bottom:548.715000px;}
.y12c{bottom:551.595000px;}
.y25f{bottom:553.575000px;}
.y1e5{bottom:555.015000px;}
.y27f{bottom:555.195000px;}
.y43{bottom:555.585000px;}
.y2a1{bottom:558.285000px;}
.y1a{bottom:559.545000px;}
.y92{bottom:560.265000px;}
.ye0{bottom:560.445000px;}
.y15f{bottom:561.705000px;}
.ybe{bottom:562.425000px;}
.y102{bottom:564.405000px;}
.y18b{bottom:566.385000px;}
.y1b3{bottom:567.645000px;}
.y209{bottom:570.705000px;}
.y1e4{bottom:574.845000px;}
.y42{bottom:576.285000px;}
.y27c{bottom:577.365000px;}
.y14b{bottom:579.885000px;}
.y19{bottom:580.245000px;}
.y91{bottom:580.965000px;}
.ydf{bottom:581.865000px;}
.y22b{bottom:582.045000px;}
.y60{bottom:582.945000px;}
.ybd{bottom:583.125000px;}
.y101{bottom:585.105000px;}
.y1b2{bottom:586.725000px;}
.y176{bottom:587.085000px;}
.y12b{bottom:590.325000px;}
.y25e{bottom:592.305000px;}
.y1e3{bottom:594.465000px;}
.y27b{bottom:596.265000px;}
.y41{bottom:596.985000px;}
.y14a{bottom:600.585000px;}
.y18{bottom:600.945000px;}
.y90{bottom:601.665000px;}
.y29d{bottom:602.205000px;}
.y15e{bottom:602.385000px;}
.yde{bottom:603.285000px;}
.ybc{bottom:603.825000px;}
.y22a{bottom:604.725000px;}
.y1b1{bottom:605.625000px;}
.y100{bottom:605.805000px;}
.y208{bottom:606.885000px;}
.y175{bottom:607.785000px;}
.y12a{bottom:611.025000px;}
.y257{bottom:611.925000px;}
.y1e2{bottom:614.265000px;}
.y40{bottom:617.685000px;}
.y27a{bottom:619.305000px;}
.y17{bottom:621.645000px;}
.y5f{bottom:623.085000px;}
.y229{bottom:623.985000px;}
.y29c{bottom:624.165000px;}
.ybb{bottom:624.525000px;}
.ydd{bottom:624.705000px;}
.y18a{bottom:625.785000px;}
.y196{bottom:628.485000px;}
.y129{bottom:631.725000px;}
.y1e1{bottom:634.065000px;}
.y279{bottom:634.245000px;}
.y3f{bottom:638.385000px;}
.y149{bottom:639.285000px;}
.y8f{bottom:640.545000px;}
.y24a{bottom:641.985000px;}
.y16{bottom:642.345000px;}
.y29b{bottom:643.065000px;}
.y1b0{bottom:643.605000px;}
.y5e{bottom:643.785000px;}
.yff{bottom:644.865000px;}
.ydc{bottom:646.125000px;}
.y174{bottom:646.485000px;}
.y25d{bottom:651.525000px;}
.y128{bottom:652.425000px;}
.y207{bottom:653.145000px;}
.y1e0{bottom:653.685000px;}
.y3e{bottom:659.085000px;}
.yba{bottom:659.445000px;}
.y148{bottom:659.985000px;}
.y244{bottom:660.885000px;}
.y2ae{bottom:662.145000px;}
.y1af{bottom:662.505000px;}
.y15{bottom:663.045000px;}
.y5d{bottom:664.485000px;}
.yfe{bottom:667.185000px;}
.ydb{bottom:667.725000px;}
.y206{bottom:669.525000px;}
.y127{bottom:673.125000px;}
.y1df{bottom:673.485000px;}
.y278{bottom:675.105000px;}
.y3d{bottom:679.785000px;}
.y8e{bottom:680.505000px;}
.y147{bottom:680.685000px;}
.yb9{bottom:680.865000px;}
.y1ae{bottom:681.585000px;}
.y249{bottom:682.845000px;}
.y14{bottom:683.745000px;}
.y173{bottom:687.885000px;}
.yda{bottom:689.145000px;}
.y205{bottom:689.325000px;}
.y25c{bottom:690.225000px;}
.y1de{bottom:693.105000px;}
.y3c{bottom:700.485000px;}
.y146{bottom:701.385000px;}
.yb8{bottom:702.285000px;}
.y2ad{bottom:703.005000px;}
.y5c{bottom:703.185000px;}
.y13{bottom:704.445000px;}
.y248{bottom:704.805000px;}
.y189{bottom:705.885000px;}
.yfd{bottom:707.325000px;}
.y172{bottom:708.585000px;}
.y204{bottom:708.945000px;}
.y25b{bottom:709.845000px;}
.y126{bottom:711.825000px;}
.y1dc{bottom:712.905000px;}
.y277{bottom:713.085000px;}
.y1ad{bottom:719.385000px;}
.y3b{bottom:721.185000px;}
.y145{bottom:722.085000px;}
.yb7{bottom:723.705000px;}
.y5b{bottom:723.885000px;}
.y188{bottom:726.585000px;}
.y247{bottom:726.765000px;}
.yfc{bottom:728.025000px;}
.y203{bottom:728.745000px;}
.y25a{bottom:729.645000px;}
.yd9{bottom:729.825000px;}
.y125{bottom:732.525000px;}
.y1ac{bottom:738.465000px;}
.y7c{bottom:739.185000px;}
.y2ac{bottom:740.985000px;}
.y3a{bottom:741.885000px;}
.y12{bottom:742.785000px;}
.y5a{bottom:744.585000px;}
.yb6{bottom:745.125000px;}
.y171{bottom:747.285000px;}
.y202{bottom:748.545000px;}
.yfb{bottom:748.725000px;}
.y241{bottom:748.905000px;}
.y259{bottom:749.280000px;}
.y276{bottom:751.065000px;}
.y1db{bottom:751.605000px;}
.y124{bottom:753.225000px;}
.y1ab{bottom:757.365000px;}
.y7b{bottom:759.885000px;}
.y39{bottom:762.585000px;}
.y144{bottom:763.485000px;}
.y187{bottom:765.285000px;}
.yb5{bottom:766.725000px;}
.y170{bottom:767.985000px;}
.y201{bottom:768.165000px;}
.yd8{bottom:768.705000px;}
.y255{bottom:769.065000px;}
.yfa{bottom:769.425000px;}
.y275{bottom:769.965000px;}
.y243{bottom:770.880000px;}
.y1d9{bottom:771.240000px;}
.y123{bottom:773.925000px;}
.y1aa{bottom:776.445000px;}
.y2ab{bottom:778.965000px;}
.y7a{bottom:780.585000px;}
.y11{bottom:783.285000px;}
.y186{bottom:785.985000px;}
.y200{bottom:787.965000px;}
.yb4{bottom:788.145000px;}
.y16f{bottom:788.685000px;}
.y256{bottom:788.700000px;}
.yd7{bottom:789.405000px;}
.yf9{bottom:790.125000px;}
.y1d8{bottom:791.025000px;}
.y273{bottom:791.925000px;}
.y240{bottom:792.825000px;}
.y122{bottom:794.625000px;}
.y1a9{bottom:795.345000px;}
.y2aa{bottom:797.880000px;}
.y143{bottom:802.185000px;}
.y38{bottom:803.985000px;}
.y195{bottom:806.685000px;}
.y1ff{bottom:807.600000px;}
.y254{bottom:808.500000px;}
.yb3{bottom:809.565000px;}
.yf8{bottom:810.825000px;}
.y23f{bottom:811.740000px;}
.y1a8{bottom:814.245000px;}
.y79{bottom:819.285000px;}
.y2a7{bottom:819.825000px;}
.y142{bottom:822.885000px;}
.y10{bottom:824.145000px;}
.y37{bottom:824.685000px;}
.y16e{bottom:827.385000px;}
.yd6{bottom:828.105000px;}
.y253{bottom:828.285000px;}
.y1d6{bottom:830.460000px;}
.yb2{bottom:830.985000px;}
.y121{bottom:833.145000px;}
.y1a7{bottom:833.325000px;}
.y228{bottom:834.765000px;}
.y78{bottom:840.030000px;}
.y8d{bottom:842.730000px;}
.y141{bottom:843.630000px;}
.y36{bottom:845.430000px;}
.yf7{bottom:845.790000px;}
.yf{bottom:847.050000px;}
.y16d{bottom:848.130000px;}
.y1d5{bottom:850.290000px;}
.y226{bottom:850.650000px;}
.y272{bottom:851.910000px;}
.y252{bottom:852.090000px;}
.y1a6{bottom:852.270000px;}
.yb1{bottom:852.450000px;}
.y120{bottom:853.890000px;}
.y77{bottom:860.730000px;}
.yd5{bottom:863.070000px;}
.y59{bottom:863.430000px;}
.y140{bottom:864.330000px;}
.y35{bottom:866.130000px;}
.y1fe{bottom:866.850000px;}
.y250{bottom:867.030000px;}
.yf6{bottom:867.375000px;}
.yf4{bottom:867.390000px;}
.y1d4{bottom:869.910000px;}
.y1a5{bottom:871.350000px;}
.yb0{bottom:873.870000px;}
.y11f{bottom:874.590000px;}
.y2a6{bottom:879.810000px;}
.y76{bottom:881.430000px;}
.y58{bottom:884.130000px;}
.yd4{bottom:884.490000px;}
.y13f{bottom:885.030000px;}
.y1fd{bottom:886.650000px;}
.y16c{bottom:886.830000px;}
.ye{bottom:888.810000px;}
.y1d3{bottom:889.710000px;}
.y1a4{bottom:890.250000px;}
.y225{bottom:890.430000px;}
.y271{bottom:893.490000px;}
.yaf{bottom:895.290000px;}
.y75{bottom:902.130000px;}
.y29a{bottom:902.490000px;}
.y34{bottom:904.830000px;}
.y1fc{bottom:906.270000px;}
.y16b{bottom:907.530000px;}
.y24f{bottom:907.890000px;}
.y1a3{bottom:909.150000px;}
.y1d2{bottom:909.330000px;}
.yc{bottom:911.490000px;}
.y270{bottom:911.850000px;}
.y11e{bottom:915.990000px;}
.yae{bottom:916.890000px;}
.yd{bottom:919.050000px;}
.y299{bottom:921.570000px;}
.y74{bottom:922.830000px;}
.y13e{bottom:923.550000px;}
.yd3{bottom:925.350000px;}
.y33{bottom:925.530000px;}
.y1fb{bottom:926.070000px;}
.y1a2{bottom:928.230000px;}
.yf3{bottom:928.770000px;}
.y1d1{bottom:929.130000px;}
.y26a{bottom:930.930000px;}
.yb{bottom:937.230000px;}
.yad{bottom:938.310000px;}
.y298{bottom:939.930000px;}
.y57{bottom:943.530000px;}
.y1fa{bottom:945.690000px;}
.y24e{bottom:945.870000px;}
.y32{bottom:946.230000px;}
.y1a1{bottom:947.130000px;}
.y1d0{bottom:948.930000px;}
.y11d{bottom:951.090000px;}
.y26f{bottom:952.890000px;}
.y294{bottom:958.830000px;}
.yac{bottom:959.730000px;}
.y56{bottom:964.230000px;}
.y1f9{bottom:965.490000px;}
.y1a0{bottom:966.210000px;}
.y16a{bottom:966.930000px;}
.yf2{bottom:967.650000px;}
.y224{bottom:967.830000px;}
.y1cf{bottom:968.550000px;}
.y11c{bottom:972.510000px;}
.y26e{bottom:974.850000px;}
.yab{bottom:981.150000px;}
.y73{bottom:982.230000px;}
.y24d{bottom:983.850000px;}
.y31{bottom:984.930000px;}
.y19f{bottom:985.110000px;}
.y223{bottom:987.630000px;}
.yf1{bottom:988.350000px;}
.ya{bottom:989.790000px;}
.y11b{bottom:993.930000px;}
.y26d{bottom:996.810000px;}
.y297{bottom:999.690000px;}
.ya1{bottom:1002.555000px;}
.y9f{bottom:1002.570000px;}
.y24c{bottom:1002.750000px;}
.y55{bottom:1002.930000px;}
.y19e{bottom:1003.650000px;}
.y1f8{bottom:1004.910000px;}
.y30{bottom:1005.630000px;}
.y222{bottom:1007.250000px;}
.y1cd{bottom:1007.970000px;}
.yf0{bottom:1009.050000px;}
.y11a{bottom:1015.350000px;}
.y26c{bottom:1018.770000px;}
.y54{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.y1f6{bottom:1024.710000px;}
.y19d{bottom:1024.890000px;}
.y2f{bottom:1026.330000px;}
.y1cb{bottom:1027.770000px;}
.y119{bottom:1036.770000px;}
.y268{bottom:1040.730000px;}
.yef{bottom:1043.970000px;}
.y53{bottom:1044.330000px;}
.ya8{bottom:1044.675000px;}
.ya6{bottom:1044.690000px;}
.y19c{bottom:1046.670000px;}
.y2e{bottom:1047.030000px;}
.y1c9{bottom:1047.390000px;}
.y118{bottom:1058.190000px;}
.y269{bottom:1062.690000px;}
.y1f5{bottom:1064.130000px;}
.y221{bottom:1064.850000px;}
.y52{bottom:1065.030000px;}
.yee{bottom:1065.390000px;}
.y1c7{bottom:1067.190000px;}
.y19b{bottom:1067.370000px;}
.y8{bottom:1076.730000px;}
.y117{bottom:1079.790000px;}
.y24b{bottom:1084.650000px;}
.y2d{bottom:1085.730000px;}
.y220{bottom:1088.610000px;}
.y116{bottom:1101.210000px;}
.y267{bottom:1103.550000px;}
.y1c6{bottom:1105.890000px;}
.y19a{bottom:1106.070000px;}
.y2c{bottom:1106.430000px;}
.y21f{bottom:1107.330000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h25{height:18.885000px;}
.h29{height:18.900000px;}
.h28{height:18.921000px;}
.h2f{height:18.922500px;}
.h40{height:18.930000px;}
.h27{height:19.065000px;}
.h2b{height:19.080000px;}
.h37{height:19.101000px;}
.h2c{height:19.110000px;}
.h18{height:20.685000px;}
.h20{height:20.691000px;}
.h1a{height:20.700000px;}
.h19{height:20.722500px;}
.h1f{height:20.730000px;}
.hf{height:26.995781px;}
.ha{height:37.494141px;}
.h3c{height:37.785000px;}
.h3f{height:37.800000px;}
.h33{height:37.965000px;}
.h48{height:37.975500px;}
.h2a{height:37.980000px;}
.h2e{height:38.685000px;}
.h3d{height:38.700000px;}
.h34{height:39.045000px;}
.h41{height:40.845000px;}
.h39{height:40.860000px;}
.h45{height:41.025000px;}
.h36{height:41.061000px;}
.h44{height:41.070000px;}
.h17{height:41.385000px;}
.h15{height:41.391000px;}
.h16{height:41.400000px;}
.h1b{height:41.421000px;}
.h1c{height:41.422500px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h30{height:45.248906px;}
.h10{height:50.027344px;}
.h5{height:53.640000px;}
.h32{height:56.865000px;}
.h35{height:56.910000px;}
.h43{height:57.082500px;}
.h31{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h38{height:62.805000px;}
.h47{height:62.850000px;}
.h26{height:64.978594px;}
.h24{height:65.010937px;}
.h23{height:66.757500px;}
.h22{height:68.084282px;}
.h2d{height:68.956875px;}
.h12{height:70.628906px;}
.hd{height:70.664062px;}
.he{height:72.562500px;}
.h21{height:74.681367px;}
.h11{height:76.279219px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h46{height:78.825000px;}
.h8{height:82.676953px;}
.h13{height:83.511000px;}
.h14{height:83.520000px;}
.h1d{height:83.691000px;}
.h1e{height:83.700000px;}
.h3a{height:84.955500px;}
.h3b{height:84.960000px;}
.h42{height:106.725000px;}
.h7{height:121.179375px;}
.h3e{height:156.420000px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2f{width:46.800000px;}
.w30{width:48.420000px;}
.w5f{width:53.091000px;}
.w60{width:53.100000px;}
.w48{width:53.991000px;}
.w68{width:54.171000px;}
.w26{width:54.345000px;}
.w17{width:55.785000px;}
.w19{width:55.965000px;}
.w15{width:55.980000px;}
.w1a{width:56.001000px;}
.w16{width:57.456000px;}
.w20{width:60.480000px;}
.w32{width:61.905000px;}
.w31{width:61.956000px;}
.w25{width:64.245000px;}
.w36{width:65.151000px;}
.w24{width:65.721000px;}
.w22{width:66.765000px;}
.w84{width:70.011000px;}
.w49{width:72.705000px;}
.w7e{width:73.461000px;}
.w71{width:73.476000px;}
.w5d{width:73.605000px;}
.w50{width:73.620000px;}
.w56{width:73.641000px;}
.w72{width:74.145000px;}
.w51{width:74.160000px;}
.w57{width:74.196000px;}
.w58{width:74.325000px;}
.w78{width:74.340000px;}
.w73{width:74.361000px;}
.w5e{width:74.376000px;}
.w39{width:74.865000px;}
.w3c{width:74.880000px;}
.w67{width:74.916000px;}
.w46{width:75.045000px;}
.w41{width:75.060000px;}
.w47{width:75.081000px;}
.w3e{width:75.096000px;}
.w4d{width:75.405000px;}
.w6d{width:75.441000px;}
.w6b{width:75.636000px;}
.w6c{width:75.765000px;}
.w4b{width:75.780000px;}
.w4a{width:75.801000px;}
.w6a{width:75.960000px;}
.w4c{width:75.996000px;}
.w18{width:77.385000px;}
.w63{width:79.200000px;}
.w21{width:79.236000px;}
.w4{width:80.451000px;}
.w5{width:80.460000px;}
.w23{width:83.325000px;}
.w79{width:87.111000px;}
.w85{width:88.185000px;}
.w13{width:88.545000px;}
.w1e{width:88.551000px;}
.w2d{width:94.341000px;}
.w3a{width:97.221000px;}
.w5a{width:98.481000px;}
.w10{width:106.365000px;}
.w52{width:106.956000px;}
.w3d{width:108.540000px;}
.w3b{width:108.561000px;}
.w42{width:108.576000px;}
.w2c{width:109.425000px;}
.w29{width:109.435500px;}
.w2a{width:109.440000px;}
.w61{width:111.981000px;}
.w7a{width:112.161000px;}
.w7f{width:115.551000px;}
.w80{width:117.021000px;}
.w11{width:118.461000px;}
.w12{width:118.462500px;}
.w2{width:125.460000px;}
.w44{width:126.351000px;}
.w74{width:127.071000px;}
.w14{width:131.601000px;}
.w2b{width:131.961000px;}
.w27{width:131.962500px;}
.we{width:132.156000px;}
.wf{width:132.165000px;}
.w59{width:141.651000px;}
.w1f{width:142.941000px;}
.wa{width:147.981000px;}
.w6{width:147.982500px;}
.w75{width:156.615000px;}
.w82{width:158.211000px;}
.w28{width:158.970000px;}
.w1c{width:163.455000px;}
.w5c{width:165.075000px;}
.w4f{width:179.115000px;}
.w34{width:180.030000px;}
.w40{width:181.281000px;}
.w69{width:181.995000px;}
.w37{width:184.155000px;}
.w38{width:184.350000px;}
.w9{width:192.435000px;}
.w8{width:194.610000px;}
.w77{width:199.281000px;}
.wd{width:199.995000px;}
.w2e{width:221.430000px;}
.wb{width:229.161000px;}
.w7c{width:232.575000px;}
.w65{width:235.821000px;}
.w54{width:240.141000px;}
.w33{width:254.361000px;}
.w6f{width:283.701000px;}
.w1b{width:299.400000px;}
.w70{width:300.675000px;}
.w7d{width:300.810000px;}
.w55{width:300.990000px;}
.w83{width:301.020000px;}
.w66{width:302.250000px;}
.w45{width:302.640000px;}
.w7{width:387.780000px;}
.w3f{width:441.966000px;}
.w86{width:442.680000px;}
.w4e{width:442.686000px;}
.w87{width:442.695000px;}
.w62{width:448.266000px;}
.w43{width:505.506000px;}
.w81{width:540.246000px;}
.w5b{width:547.086000px;}
.w1d{width:552.870000px;}
.w76{width:581.130000px;}
.w35{width:608.850000px;}
.w7b{width:614.250000px;}
.w64{width:614.790000px;}
.wc{width:617.670000px;}
.w53{width:622.170000px;}
.w6e{width:665.370000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5f{left:4.491000px;}
.x1d{left:8.265000px;}
.x49{left:9.900000px;}
.x2c{left:11.145000px;}
.x1f{left:12.225000px;}
.x1a{left:14.040000px;}
.x44{left:15.660000px;}
.x30{left:16.725000px;}
.x39{left:18.345000px;}
.x13{left:20.145000px;}
.x2a{left:21.240000px;}
.x17{left:22.845000px;}
.x1b{left:23.940000px;}
.x2d{left:25.545000px;}
.x4d{left:27.165000px;}
.x1e{left:28.965000px;}
.x2f{left:31.665000px;}
.x5b{left:32.925000px;}
.x3e{left:36.165000px;}
.x16{left:37.245000px;}
.x12{left:40.125000px;}
.x6e{left:41.760000px;}
.x70{left:44.100000px;}
.x38{left:45.525000px;}
.x53{left:47.190000px;}
.x67{left:48.945000px;}
.x2{left:50.399998px;}
.x57{left:51.840000px;}
.x20{left:53.625000px;}
.x6c{left:54.750000px;}
.x28{left:56.865000px;}
.x60{left:58.665000px;}
.x3c{left:59.790000px;}
.x40{left:61.365000px;}
.x83{left:62.670000px;}
.x4e{left:63.720000px;}
.x61{left:66.960000px;}
.x15{left:73.830000px;}
.x22{left:75.945000px;}
.x23{left:77.040000px;}
.x8d{left:79.005000px;}
.x25{left:80.445000px;}
.x79{left:82.425000px;}
.x52{left:83.520000px;}
.x6f{left:89.445000px;}
.x64{left:90.525000px;}
.x24{left:93.225000px;}
.x21{left:94.320000px;}
.x84{left:97.905000px;}
.x89{left:99.525000px;}
.x19{left:115.410000px;}
.x41{left:118.305000px;}
.x72{left:119.865000px;}
.x1{left:127.656000px;}
.x3f{left:129.450000px;}
.x71{left:130.545000px;}
.xf{left:132.516000px;}
.x4{left:142.056000px;}
.x11{left:147.105000px;}
.xd{left:148.896000px;}
.x32{left:154.485000px;}
.xc{left:159.510000px;}
.x63{left:163.785000px;}
.x27{left:167.085000px;}
.x3a{left:170.145000px;}
.xb{left:180.750000px;}
.x6b{left:182.385000px;}
.x7b{left:183.645000px;}
.x58{left:194.265000px;}
.x91{left:200.565000px;}
.x42{left:207.585000px;}
.x4a{left:218.025000px;}
.x14{left:228.285000px;}
.xa{left:244.290000px;}
.x8{left:245.910000px;}
.x68{left:255.465000px;}
.x88{left:257.625000px;}
.x3b{left:259.425000px;}
.x78{left:272.205000px;}
.x4b{left:273.285000px;}
.x50{left:288.225000px;}
.x8e{left:291.825000px;}
.x4f{left:297.075000px;}
.x7a{left:298.695000px;}
.x5d{left:303.555000px;}
.x26{left:311.295000px;}
.x10{left:315.075000px;}
.x69{left:331.275000px;}
.x8a{left:332.715000px;}
.xe{left:343.695000px;}
.x43{left:351.255000px;}
.x31{left:360.075000px;}
.x7e{left:365.115000px;}
.x29{left:367.815000px;}
.x73{left:373.575000px;}
.x18{left:376.995000px;}
.x59{left:379.155000px;}
.x51{left:383.475000px;}
.x65{left:386.175000px;}
.x7c{left:391.935000px;}
.x5{left:395.715000px;}
.x9{left:406.335000px;}
.x8c{left:407.775000px;}
.x45{left:412.455000px;}
.x85{left:417.315000px;}
.x54{left:431.175000px;}
.x33{left:432.795000px;}
.x80{left:440.895000px;}
.x90{left:442.515000px;}
.x62{left:446.655000px;}
.x75{left:448.815000px;}
.x3{left:457.275000px;}
.x66{left:461.775000px;}
.x7d{left:467.535000px;}
.x55{left:480.315000px;}
.x6a{left:483.015000px;}
.x5e{left:488.415000px;}
.x34{left:491.160000px;}
.x46{left:492.600000px;}
.x2b{left:500.700000px;}
.x6{left:511.822500px;}
.x81{left:516.540000px;}
.x7{left:518.685000px;}
.x76{left:524.460000px;}
.x56{left:543.000000px;}
.x35{left:547.860000px;}
.x6d{left:558.480000px;}
.x3d{left:559.560000px;}
.x5a{left:564.240000px;}
.x4c{left:565.665000px;}
.x87{left:568.020000px;}
.x1c{left:572.340000px;}
.x82{left:592.320000px;}
.x8f{left:594.300000px;}
.x77{left:600.420000px;}
.x2e{left:607.800000px;}
.x36{left:625.980000px;}
.x8b{left:635.160000px;}
.x5c{left:640.020000px;}
.x47{left:644.160000px;}
.x7f{left:668.100000px;}
.x74{left:676.200000px;}
.x37{left:682.680000px;}
.x48{left:710.610000px;}
.x86{left:719.430000px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v4{vertical-align:-65.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.406933pt;}
.ls1c{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.135467pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.023040pt;}
.ls14{letter-spacing:0.030720pt;}
.ls17{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.233067pt;}
.ls20{letter-spacing:0.271360pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.504533pt;}
.ls11{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls10{letter-spacing:5.120000pt;}
.lsa{letter-spacing:11.520000pt;}
.ls22{letter-spacing:35.450027pt;}
.ls21{letter-spacing:38.650027pt;}
.ls18{letter-spacing:52.730027pt;}
.ls1d{letter-spacing:1978.645333pt;}
.wsb{word-spacing:-64.000000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws8{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws17{word-spacing:-15.224533pt;}
.ws16{word-spacing:-14.991467pt;}
.ws19{word-spacing:-14.817067pt;}
.ws11{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.584533pt;}
.ws10{word-spacing:-14.486933pt;}
.ws14{word-spacing:-14.351467pt;}
.ws18{word-spacing:-14.176000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.306880pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-10.720000pt;}
.ws13{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._10{margin-left:-3.968000pt;}
._f{margin-left:-2.624000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._14{width:3.268480pt;}
._5{width:4.402987pt;}
._13{width:5.608747pt;}
._e{width:6.587093pt;}
._9{width:8.000000pt;}
._a{width:9.144960pt;}
._11{width:10.783360pt;}
._12{width:11.689600pt;}
._b{width:12.928000pt;}
._15{width:14.656000pt;}
._18{width:17.322667pt;}
._19{width:18.471253pt;}
._6{width:19.456000pt;}
._7{width:20.448000pt;}
._8{width:21.467093pt;}
._1d{width:22.420480pt;}
._c{width:23.680000pt;}
._d{width:25.083093pt;}
._23{width:27.200000pt;}
._24{width:28.096000pt;}
._22{width:29.238827pt;}
._21{width:30.530133pt;}
._20{width:31.424000pt;}
._1b{width:32.320000pt;}
._1c{width:33.280000pt;}
._17{width:35.261867pt;}
._16{width:36.418133pt;}
._1a{width:38.080000pt;}
._1e{width:39.744000pt;}
._1f{width:40.824960pt;}
._26{width:217.120000pt;}
._25{width:436.458667pt;}
._2{width:473.120000pt;}
._27{width:1312.593493pt;}
._3{width:1345.117653pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1d7{bottom:3.186667pt;}
.y1c8{bottom:3.200000pt;}
.y260{bottom:3.226667pt;}
.y218{bottom:3.346667pt;}
.y1ce{bottom:3.360000pt;}
.y280{bottom:3.386667pt;}
.y214{bottom:3.506667pt;}
.y1cc{bottom:3.520000pt;}
.y28c{bottom:3.546667pt;}
.y1da{bottom:3.666667pt;}
.y1ca{bottom:3.680000pt;}
.y1e6{bottom:3.706667pt;}
.ycb{bottom:3.986667pt;}
.y115{bottom:3.992000pt;}
.yaa{bottom:4.000000pt;}
.ya9{bottom:4.013333pt;}
.y21b{bottom:4.146667pt;}
.y290{bottom:11.986667pt;}
.y210{bottom:12.000000pt;}
.y216{bottom:12.306667pt;}
.y1f7{bottom:12.320000pt;}
.yce{bottom:13.106667pt;}
.yf5{bottom:13.120000pt;}
.yc9{bottom:13.146667pt;}
.yd2{bottom:13.266667pt;}
.y242{bottom:13.280000pt;}
.y27e{bottom:13.440000pt;}
.y236{bottom:13.466667pt;}
.ya5{bottom:13.613333pt;}
.y292{bottom:20.306667pt;}
.y251{bottom:20.320000pt;}
.y28e{bottom:20.466667pt;}
.y1dd{bottom:20.480000pt;}
.y2a8{bottom:20.520000pt;}
.y21a{bottom:21.106667pt;}
.y227{bottom:21.440000pt;}
.ycd{bottom:22.386667pt;}
.ya7{bottom:22.400000pt;}
.yca{bottom:22.426667pt;}
.yd1{bottom:22.706667pt;}
.ya2{bottom:22.733333pt;}
.y282{bottom:23.200000pt;}
.y2a0{bottom:25.440000pt;}
.ya4{bottom:32.013333pt;}
.y7{bottom:34.912000pt;}
.y20c{bottom:37.280000pt;}
.y22d{bottom:37.306667pt;}
.y274{bottom:37.440000pt;}
.y2a9{bottom:37.480000pt;}
.y296{bottom:40.000000pt;}
.yd0{bottom:41.106667pt;}
.ya0{bottom:41.120000pt;}
.y239{bottom:42.226667pt;}
.y29f{bottom:42.266667pt;}
.y246{bottom:45.280000pt;}
.ya3{bottom:50.400000pt;}
.y6{bottom:52.032000pt;}
.y295{bottom:56.800000pt;}
.y245{bottom:62.240000pt;}
.y26b{bottom:81.600000pt;}
.y2b{bottom:116.512000pt;}
.y199{bottom:117.472000pt;}
.y15d{bottom:120.352000pt;}
.y2a{bottom:121.152000pt;}
.y72{bottom:122.752000pt;}
.y293{bottom:124.352000pt;}
.y23e{bottom:125.472000pt;}
.y258{bottom:125.760000pt;}
.y21e{bottom:127.232000pt;}
.y1c5{bottom:127.552000pt;}
.y114{bottom:127.880000pt;}
.y13d{bottom:129.472000pt;}
.y29{bottom:132.672000pt;}
.y291{bottom:137.640000pt;}
.y15c{bottom:138.746667pt;}
.y1f4{bottom:140.346667pt;}
.y71{bottom:141.146667pt;}
.y21d{bottom:141.480000pt;}
.y23d{bottom:142.746667pt;}
.yed{bottom:145.946667pt;}
.y113{bottom:146.920000pt;}
.y13c{bottom:147.866667pt;}
.y9e{bottom:149.146667pt;}
.y185{bottom:149.786667pt;}
.y198{bottom:151.866667pt;}
.y8c{bottom:152.346667pt;}
.ycf{bottom:155.240000pt;}
.y15b{bottom:157.146667pt;}
.y23c{bottom:158.600000pt;}
.y219{bottom:159.080000pt;}
.y70{bottom:159.546667pt;}
.y1c4{bottom:161.946667pt;}
.y169{bottom:164.346667pt;}
.y28{bottom:165.786667pt;}
.y112{bottom:165.960000pt;}
.y13b{bottom:166.266667pt;}
.y184{bottom:168.186667pt;}
.y51{bottom:169.146667pt;}
.y8b{bottom:170.746667pt;}
.y1f3{bottom:172.986667pt;}
.y28f{bottom:173.960000pt;}
.y15a{bottom:175.546667pt;}
.y238{bottom:175.560000pt;}
.y21c{bottom:176.520000pt;}
.yec{bottom:180.186667pt;}
.y168{bottom:182.746667pt;}
.y9d{bottom:183.546667pt;}
.y27{bottom:184.186667pt;}
.y13a{bottom:184.666667pt;}
.y111{bottom:185.000000pt;}
.y197{bottom:186.266667pt;}
.y183{bottom:186.586667pt;}
.y50{bottom:187.546667pt;}
.y8a{bottom:189.146667pt;}
.ycc{bottom:192.840000pt;}
.y6f{bottom:193.946667pt;}
.y215{bottom:194.120000pt;}
.y23b{bottom:195.080000pt;}
.y1c3{bottom:196.346667pt;}
.y110{bottom:204.040000pt;}
.y1f2{bottom:205.786667pt;}
.y4f{bottom:205.946667pt;}
.y89{bottom:207.546667pt;}
.y28d{bottom:207.720000pt;}
.y159{bottom:209.946667pt;}
.y217{bottom:211.560000pt;}
.y6e{bottom:212.346667pt;}
.y23a{bottom:214.600000pt;}
.yeb{bottom:214.746667pt;}
.y167{bottom:217.146667pt;}
.y9c{bottom:217.946667pt;}
.y26{bottom:218.586667pt;}
.y139{bottom:219.066667pt;}
.y182{bottom:220.986667pt;}
.y10f{bottom:223.240000pt;}
.y4e{bottom:224.346667pt;}
.y158{bottom:228.346667pt;}
.y213{bottom:229.160000pt;}
.yc8{bottom:230.280000pt;}
.y6d{bottom:230.746667pt;}
.yea{bottom:233.146667pt;}
.y235{bottom:234.120000pt;}
.y166{bottom:235.546667pt;}
.y25{bottom:236.986667pt;}
.y138{bottom:237.466667pt;}
.y1f1{bottom:238.426667pt;}
.y181{bottom:239.386667pt;}
.y28b{bottom:241.480000pt;}
.y88{bottom:241.946667pt;}
.y10e{bottom:242.306667pt;}
.y4d{bottom:242.786667pt;}
.y157{bottom:246.786667pt;}
.y1c2{bottom:247.586667pt;}
.y9b{bottom:252.386667pt;}
.y237{bottom:253.666667pt;}
.y165{bottom:253.986667pt;}
.y194{bottom:255.426667pt;}
.y137{bottom:255.906667pt;}
.y28a{bottom:258.306667pt;}
.y87{bottom:260.386667pt;}
.y4c{bottom:261.186667pt;}
.y10d{bottom:261.346667pt;}
.y1c1{bottom:264.386667pt;}
.y6c{bottom:265.186667pt;}
.ye9{bottom:267.586667pt;}
.y212{bottom:267.906667pt;}
.y24{bottom:271.266667pt;}
.y234{bottom:273.186667pt;}
.y180{bottom:273.826667pt;}
.y289{bottom:277.826667pt;}
.y86{bottom:278.786667pt;}
.y10c{bottom:280.386667pt;}
.y156{bottom:281.186667pt;}
.y1c0{bottom:281.346667pt;}
.y211{bottom:281.826667pt;}
.y6b{bottom:283.586667pt;}
.yc7{bottom:284.866667pt;}
.y266{bottom:285.186667pt;}
.ye8{bottom:285.986667pt;}
.y9a{bottom:286.786667pt;}
.y164{bottom:288.386667pt;}
.y193{bottom:289.826667pt;}
.y233{bottom:290.146667pt;}
.y136{bottom:290.306667pt;}
.y17f{bottom:292.226667pt;}
.y4b{bottom:295.586667pt;}
.y85{bottom:297.186667pt;}
.y1bf{bottom:298.146667pt;}
.y265{bottom:298.466667pt;}
.y10b{bottom:299.426667pt;}
.y155{bottom:299.586667pt;}
.y6a{bottom:301.986667pt;}
.y1f0{bottom:303.906667pt;}
.y23{bottom:306.786667pt;}
.y192{bottom:308.226667pt;}
.y135{bottom:308.706667pt;}
.y232{bottom:310.466667pt;}
.y17e{bottom:310.626667pt;}
.y4a{bottom:313.986667pt;}
.y1be{bottom:315.106667pt;}
.y84{bottom:315.586667pt;}
.y20f{bottom:316.226667pt;}
.y154{bottom:317.986667pt;}
.y10a{bottom:318.466667pt;}
.yc6{bottom:319.426667pt;}
.y69{bottom:320.386667pt;}
.y99{bottom:321.186667pt;}
.y22{bottom:321.986667pt;}
.y231{bottom:323.746667pt;}
.y191{bottom:326.626667pt;}
.y134{bottom:327.106667pt;}
.y288{bottom:331.106667pt;}
.y1bd{bottom:331.906667pt;}
.y49{bottom:332.386667pt;}
.y83{bottom:333.986667pt;}
.y264{bottom:334.946667pt;}
.y1ef{bottom:335.586667pt;}
.y153{bottom:336.386667pt;}
.y21{bottom:337.346667pt;}
.y109{bottom:337.506667pt;}
.yc5{bottom:337.826667pt;}
.ye7{bottom:338.626667pt;}
.y68{bottom:338.786667pt;}
.y163{bottom:341.186667pt;}
.y17d{bottom:345.026667pt;}
.y133{bottom:345.506667pt;}
.y1bc{bottom:348.386667pt;}
.y20e{bottom:350.626667pt;}
.y287{bottom:351.266667pt;}
.y1ee{bottom:353.186667pt;}
.y152{bottom:354.786667pt;}
.y98{bottom:355.426667pt;}
.yc4{bottom:356.226667pt;}
.y108{bottom:356.706667pt;}
.y67{bottom:357.186667pt;}
.y162{bottom:359.586667pt;}
.y230{bottom:360.226667pt;}
.y190{bottom:361.026667pt;}
.y17c{bottom:363.426667pt;}
.y132{bottom:363.906667pt;}
.y48{bottom:367.106667pt;}
.y1bb{bottom:367.266667pt;}
.y82{bottom:368.066667pt;}
.y263{bottom:368.706667pt;}
.y20{bottom:369.346667pt;}
.y1ed{bottom:370.626667pt;}
.y2a5{bottom:372.706667pt;}
.y151{bottom:373.186667pt;}
.ye6{bottom:374.306667pt;}
.yc3{bottom:374.626667pt;}
.y107{bottom:375.746667pt;}
.y18f{bottom:379.426667pt;}
.y17b{bottom:381.826667pt;}
.y131{bottom:382.306667pt;}
.y20d{bottom:385.026667pt;}
.y286{bottom:385.346667pt;}
.y1ba{bottom:386.146667pt;}
.y1f{bottom:387.746667pt;}
.y1ec{bottom:388.226667pt;}
.y97{bottom:389.986667pt;}
.y66{bottom:391.586667pt;}
.ye5{bottom:392.706667pt;}
.y161{bottom:393.986667pt;}
.y18e{bottom:397.826667pt;}
.y285{bottom:402.146667pt;}
.y47{bottom:402.466667pt;}
.y1b9{bottom:403.426667pt;}
.y81{bottom:404.226667pt;}
.y1eb{bottom:405.666667pt;}
.y2a4{bottom:407.106667pt;}
.y150{bottom:407.586667pt;}
.y96{bottom:408.386667pt;}
.yc2{bottom:409.026667pt;}
.y65{bottom:409.986667pt;}
.ye4{bottom:411.106667pt;}
.y106{bottom:411.906667pt;}
.y160{bottom:412.386667pt;}
.y17a{bottom:416.226667pt;}
.y130{bottom:416.706667pt;}
.y284{bottom:418.146667pt;}
.y262{bottom:419.266667pt;}
.y20b{bottom:420.066667pt;}
.y1b8{bottom:420.226667pt;}
.y80{bottom:422.626667pt;}
.y1ea{bottom:423.266667pt;}
.y1e{bottom:423.746667pt;}
.y14f{bottom:425.986667pt;}
.y95{bottom:426.786667pt;}
.yc1{bottom:427.426667pt;}
.y22f{bottom:427.746667pt;}
.y64{bottom:428.386667pt;}
.ye3{bottom:429.506667pt;}
.y18d{bottom:432.226667pt;}
.y179{bottom:434.626667pt;}
.y281{bottom:434.946667pt;}
.y12f{bottom:435.106667pt;}
.y1b7{bottom:437.026667pt;}
.y46{bottom:438.626667pt;}
.y261{bottom:438.786667pt;}
.y2a3{bottom:440.226667pt;}
.y1e9{bottom:440.706667pt;}
.y7f{bottom:441.026667pt;}
.y1d{bottom:442.146667pt;}
.y14e{bottom:444.386667pt;}
.y22e{bottom:444.546667pt;}
.yc0{bottom:445.826667pt;}
.y105{bottom:446.466667pt;}
.y63{bottom:446.786667pt;}
.ye2{bottom:447.906667pt;}
.y18c{bottom:450.626667pt;}
.y12e{bottom:453.506667pt;}
.y1b6{bottom:453.986667pt;}
.y283{bottom:454.466667pt;}
.y45{bottom:457.026667pt;}
.y29e{bottom:457.186667pt;}
.y1e8{bottom:458.306667pt;}
.y7e{bottom:459.426667pt;}
.y1c{bottom:460.546667pt;}
.y94{bottom:461.186667pt;}
.y14d{bottom:462.786667pt;}
.y22c{bottom:464.066667pt;}
.y104{bottom:464.866667pt;}
.y62{bottom:465.186667pt;}
.y178{bottom:469.026667pt;}
.y1b5{bottom:470.786667pt;}
.y20a{bottom:471.266667pt;}
.y12d{bottom:471.906667pt;}
.y27d{bottom:473.986667pt;}
.y44{bottom:475.426667pt;}
.y1e7{bottom:475.906667pt;}
.y2a2{bottom:476.706667pt;}
.y7d{bottom:477.826667pt;}
.y1b{bottom:478.946667pt;}
.ye1{bottom:479.106667pt;}
.y93{bottom:479.586667pt;}
.y14c{bottom:481.186667pt;}
.ybf{bottom:481.506667pt;}
.y103{bottom:483.266667pt;}
.y61{bottom:483.426667pt;}
.y177{bottom:487.426667pt;}
.y1b4{bottom:487.746667pt;}
.y12c{bottom:490.306667pt;}
.y25f{bottom:492.066667pt;}
.y1e5{bottom:493.346667pt;}
.y27f{bottom:493.506667pt;}
.y43{bottom:493.853333pt;}
.y2a1{bottom:496.253333pt;}
.y1a{bottom:497.373333pt;}
.y92{bottom:498.013333pt;}
.ye0{bottom:498.173333pt;}
.y15f{bottom:499.293333pt;}
.ybe{bottom:499.933333pt;}
.y102{bottom:501.693333pt;}
.y18b{bottom:503.453333pt;}
.y1b3{bottom:504.573333pt;}
.y209{bottom:507.293333pt;}
.y1e4{bottom:510.973333pt;}
.y42{bottom:512.253333pt;}
.y27c{bottom:513.213333pt;}
.y14b{bottom:515.453333pt;}
.y19{bottom:515.773333pt;}
.y91{bottom:516.413333pt;}
.ydf{bottom:517.213333pt;}
.y22b{bottom:517.373333pt;}
.y60{bottom:518.173333pt;}
.ybd{bottom:518.333333pt;}
.y101{bottom:520.093333pt;}
.y1b2{bottom:521.533333pt;}
.y176{bottom:521.853333pt;}
.y12b{bottom:524.733333pt;}
.y25e{bottom:526.493333pt;}
.y1e3{bottom:528.413333pt;}
.y27b{bottom:530.013333pt;}
.y41{bottom:530.653333pt;}
.y14a{bottom:533.853333pt;}
.y18{bottom:534.173333pt;}
.y90{bottom:534.813333pt;}
.y29d{bottom:535.293333pt;}
.y15e{bottom:535.453333pt;}
.yde{bottom:536.253333pt;}
.ybc{bottom:536.733333pt;}
.y22a{bottom:537.533333pt;}
.y1b1{bottom:538.333333pt;}
.y100{bottom:538.493333pt;}
.y208{bottom:539.453333pt;}
.y175{bottom:540.253333pt;}
.y12a{bottom:543.133333pt;}
.y257{bottom:543.933333pt;}
.y1e2{bottom:546.013333pt;}
.y40{bottom:549.053333pt;}
.y27a{bottom:550.493333pt;}
.y17{bottom:552.573333pt;}
.y5f{bottom:553.853333pt;}
.y229{bottom:554.653333pt;}
.y29c{bottom:554.813333pt;}
.ybb{bottom:555.133333pt;}
.ydd{bottom:555.293333pt;}
.y18a{bottom:556.253333pt;}
.y196{bottom:558.653333pt;}
.y129{bottom:561.533333pt;}
.y1e1{bottom:563.613333pt;}
.y279{bottom:563.773333pt;}
.y3f{bottom:567.453333pt;}
.y149{bottom:568.253333pt;}
.y8f{bottom:569.373333pt;}
.y24a{bottom:570.653333pt;}
.y16{bottom:570.973333pt;}
.y29b{bottom:571.613333pt;}
.y1b0{bottom:572.093333pt;}
.y5e{bottom:572.253333pt;}
.yff{bottom:573.213333pt;}
.ydc{bottom:574.333333pt;}
.y174{bottom:574.653333pt;}
.y25d{bottom:579.133333pt;}
.y128{bottom:579.933333pt;}
.y207{bottom:580.573333pt;}
.y1e0{bottom:581.053333pt;}
.y3e{bottom:585.853333pt;}
.yba{bottom:586.173333pt;}
.y148{bottom:586.653333pt;}
.y244{bottom:587.453333pt;}
.y2ae{bottom:588.573333pt;}
.y1af{bottom:588.893333pt;}
.y15{bottom:589.373333pt;}
.y5d{bottom:590.653333pt;}
.yfe{bottom:593.053333pt;}
.ydb{bottom:593.533333pt;}
.y206{bottom:595.133333pt;}
.y127{bottom:598.333333pt;}
.y1df{bottom:598.653333pt;}
.y278{bottom:600.093333pt;}
.y3d{bottom:604.253333pt;}
.y8e{bottom:604.893333pt;}
.y147{bottom:605.053333pt;}
.yb9{bottom:605.213333pt;}
.y1ae{bottom:605.853333pt;}
.y249{bottom:606.973333pt;}
.y14{bottom:607.773333pt;}
.y173{bottom:611.453333pt;}
.yda{bottom:612.573333pt;}
.y205{bottom:612.733333pt;}
.y25c{bottom:613.533333pt;}
.y1de{bottom:616.093333pt;}
.y3c{bottom:622.653333pt;}
.y146{bottom:623.453333pt;}
.yb8{bottom:624.253333pt;}
.y2ad{bottom:624.893333pt;}
.y5c{bottom:625.053333pt;}
.y13{bottom:626.173333pt;}
.y248{bottom:626.493333pt;}
.y189{bottom:627.453333pt;}
.yfd{bottom:628.733333pt;}
.y172{bottom:629.853333pt;}
.y204{bottom:630.173333pt;}
.y25b{bottom:630.973333pt;}
.y126{bottom:632.733333pt;}
.y1dc{bottom:633.693333pt;}
.y277{bottom:633.853333pt;}
.y1ad{bottom:639.453333pt;}
.y3b{bottom:641.053333pt;}
.y145{bottom:641.853333pt;}
.yb7{bottom:643.293333pt;}
.y5b{bottom:643.453333pt;}
.y188{bottom:645.853333pt;}
.y247{bottom:646.013333pt;}
.yfc{bottom:647.133333pt;}
.y203{bottom:647.773333pt;}
.y25a{bottom:648.573333pt;}
.yd9{bottom:648.733333pt;}
.y125{bottom:651.133333pt;}
.y1ac{bottom:656.413333pt;}
.y7c{bottom:657.053333pt;}
.y2ac{bottom:658.653333pt;}
.y3a{bottom:659.453333pt;}
.y12{bottom:660.253333pt;}
.y5a{bottom:661.853333pt;}
.yb6{bottom:662.333333pt;}
.y171{bottom:664.253333pt;}
.y202{bottom:665.373333pt;}
.yfb{bottom:665.533333pt;}
.y241{bottom:665.693333pt;}
.y259{bottom:666.026667pt;}
.y276{bottom:667.613333pt;}
.y1db{bottom:668.093333pt;}
.y124{bottom:669.533333pt;}
.y1ab{bottom:673.213333pt;}
.y7b{bottom:675.453333pt;}
.y39{bottom:677.853333pt;}
.y144{bottom:678.653333pt;}
.y187{bottom:680.253333pt;}
.yb5{bottom:681.533333pt;}
.y170{bottom:682.653333pt;}
.y201{bottom:682.813333pt;}
.yd8{bottom:683.293333pt;}
.y255{bottom:683.613333pt;}
.yfa{bottom:683.933333pt;}
.y275{bottom:684.413333pt;}
.y243{bottom:685.226667pt;}
.y1d9{bottom:685.546667pt;}
.y123{bottom:687.933333pt;}
.y1aa{bottom:690.173333pt;}
.y2ab{bottom:692.413333pt;}
.y7a{bottom:693.853333pt;}
.y11{bottom:696.253333pt;}
.y186{bottom:698.653333pt;}
.y200{bottom:700.413333pt;}
.yb4{bottom:700.573333pt;}
.y16f{bottom:701.053333pt;}
.y256{bottom:701.066667pt;}
.yd7{bottom:701.693333pt;}
.yf9{bottom:702.333333pt;}
.y1d8{bottom:703.133333pt;}
.y273{bottom:703.933333pt;}
.y240{bottom:704.733333pt;}
.y122{bottom:706.333333pt;}
.y1a9{bottom:706.973333pt;}
.y2aa{bottom:709.226667pt;}
.y143{bottom:713.053333pt;}
.y38{bottom:714.653333pt;}
.y195{bottom:717.053333pt;}
.y1ff{bottom:717.866667pt;}
.y254{bottom:718.666667pt;}
.yb3{bottom:719.613333pt;}
.yf8{bottom:720.733333pt;}
.y23f{bottom:721.546667pt;}
.y1a8{bottom:723.773333pt;}
.y79{bottom:728.253333pt;}
.y2a7{bottom:728.733333pt;}
.y142{bottom:731.453333pt;}
.y10{bottom:732.573333pt;}
.y37{bottom:733.053333pt;}
.y16e{bottom:735.453333pt;}
.yd6{bottom:736.093333pt;}
.y253{bottom:736.253333pt;}
.y1d6{bottom:738.186667pt;}
.yb2{bottom:738.653333pt;}
.y121{bottom:740.573333pt;}
.y1a7{bottom:740.733333pt;}
.y228{bottom:742.013333pt;}
.y78{bottom:746.693333pt;}
.y8d{bottom:749.093333pt;}
.y141{bottom:749.893333pt;}
.y36{bottom:751.493333pt;}
.yf7{bottom:751.813333pt;}
.yf{bottom:752.933333pt;}
.y16d{bottom:753.893333pt;}
.y1d5{bottom:755.813333pt;}
.y226{bottom:756.133333pt;}
.y272{bottom:757.253333pt;}
.y252{bottom:757.413333pt;}
.y1a6{bottom:757.573333pt;}
.yb1{bottom:757.733333pt;}
.y120{bottom:759.013333pt;}
.y77{bottom:765.093333pt;}
.yd5{bottom:767.173333pt;}
.y59{bottom:767.493333pt;}
.y140{bottom:768.293333pt;}
.y35{bottom:769.893333pt;}
.y1fe{bottom:770.533333pt;}
.y250{bottom:770.693333pt;}
.yf6{bottom:771.000000pt;}
.yf4{bottom:771.013333pt;}
.y1d4{bottom:773.253333pt;}
.y1a5{bottom:774.533333pt;}
.yb0{bottom:776.773333pt;}
.y11f{bottom:777.413333pt;}
.y2a6{bottom:782.053333pt;}
.y76{bottom:783.493333pt;}
.y58{bottom:785.893333pt;}
.yd4{bottom:786.213333pt;}
.y13f{bottom:786.693333pt;}
.y1fd{bottom:788.133333pt;}
.y16c{bottom:788.293333pt;}
.ye{bottom:790.053333pt;}
.y1d3{bottom:790.853333pt;}
.y1a4{bottom:791.333333pt;}
.y225{bottom:791.493333pt;}
.y271{bottom:794.213333pt;}
.yaf{bottom:795.813333pt;}
.y75{bottom:801.893333pt;}
.y29a{bottom:802.213333pt;}
.y34{bottom:804.293333pt;}
.y1fc{bottom:805.573333pt;}
.y16b{bottom:806.693333pt;}
.y24f{bottom:807.013333pt;}
.y1a3{bottom:808.133333pt;}
.y1d2{bottom:808.293333pt;}
.yc{bottom:810.213333pt;}
.y270{bottom:810.533333pt;}
.y11e{bottom:814.213333pt;}
.yae{bottom:815.013333pt;}
.yd{bottom:816.933333pt;}
.y299{bottom:819.173333pt;}
.y74{bottom:820.293333pt;}
.y13e{bottom:820.933333pt;}
.yd3{bottom:822.533333pt;}
.y33{bottom:822.693333pt;}
.y1fb{bottom:823.173333pt;}
.y1a2{bottom:825.093333pt;}
.yf3{bottom:825.573333pt;}
.y1d1{bottom:825.893333pt;}
.y26a{bottom:827.493333pt;}
.yb{bottom:833.093333pt;}
.yad{bottom:834.053333pt;}
.y298{bottom:835.493333pt;}
.y57{bottom:838.693333pt;}
.y1fa{bottom:840.613333pt;}
.y24e{bottom:840.773333pt;}
.y32{bottom:841.093333pt;}
.y1a1{bottom:841.893333pt;}
.y1d0{bottom:843.493333pt;}
.y11d{bottom:845.413333pt;}
.y26f{bottom:847.013333pt;}
.y294{bottom:852.293333pt;}
.yac{bottom:853.093333pt;}
.y56{bottom:857.093333pt;}
.y1f9{bottom:858.213333pt;}
.y1a0{bottom:858.853333pt;}
.y16a{bottom:859.493333pt;}
.yf2{bottom:860.133333pt;}
.y224{bottom:860.293333pt;}
.y1cf{bottom:860.933333pt;}
.y11c{bottom:864.453333pt;}
.y26e{bottom:866.533333pt;}
.yab{bottom:872.133333pt;}
.y73{bottom:873.093333pt;}
.y24d{bottom:874.533333pt;}
.y31{bottom:875.493333pt;}
.y19f{bottom:875.653333pt;}
.y223{bottom:877.893333pt;}
.yf1{bottom:878.533333pt;}
.ya{bottom:879.813333pt;}
.y11b{bottom:883.493333pt;}
.y26d{bottom:886.053333pt;}
.y297{bottom:888.613333pt;}
.ya1{bottom:891.160000pt;}
.y9f{bottom:891.173333pt;}
.y24c{bottom:891.333333pt;}
.y55{bottom:891.493333pt;}
.y19e{bottom:892.133333pt;}
.y1f8{bottom:893.253333pt;}
.y30{bottom:893.893333pt;}
.y222{bottom:895.333333pt;}
.y1cd{bottom:895.973333pt;}
.yf0{bottom:896.933333pt;}
.y11a{bottom:902.533333pt;}
.y26c{bottom:905.573333pt;}
.y54{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.y1f6{bottom:910.853333pt;}
.y19d{bottom:911.013333pt;}
.y2f{bottom:912.293333pt;}
.y1cb{bottom:913.573333pt;}
.y119{bottom:921.573333pt;}
.y268{bottom:925.093333pt;}
.yef{bottom:927.973333pt;}
.y53{bottom:928.293333pt;}
.ya8{bottom:928.600000pt;}
.ya6{bottom:928.613333pt;}
.y19c{bottom:930.373333pt;}
.y2e{bottom:930.693333pt;}
.y1c9{bottom:931.013333pt;}
.y118{bottom:940.613333pt;}
.y269{bottom:944.613333pt;}
.y1f5{bottom:945.893333pt;}
.y221{bottom:946.533333pt;}
.y52{bottom:946.693333pt;}
.yee{bottom:947.013333pt;}
.y1c7{bottom:948.613333pt;}
.y19b{bottom:948.773333pt;}
.y8{bottom:957.093333pt;}
.y117{bottom:959.813333pt;}
.y24b{bottom:964.133333pt;}
.y2d{bottom:965.093333pt;}
.y220{bottom:967.653333pt;}
.y116{bottom:978.853333pt;}
.y267{bottom:980.933333pt;}
.y1c6{bottom:983.013333pt;}
.y19a{bottom:983.173333pt;}
.y2c{bottom:983.493333pt;}
.y21f{bottom:984.293333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h25{height:16.786667pt;}
.h29{height:16.800000pt;}
.h28{height:16.818667pt;}
.h2f{height:16.820000pt;}
.h40{height:16.826667pt;}
.h27{height:16.946667pt;}
.h2b{height:16.960000pt;}
.h37{height:16.978667pt;}
.h2c{height:16.986667pt;}
.h18{height:18.386667pt;}
.h20{height:18.392000pt;}
.h1a{height:18.400000pt;}
.h19{height:18.420000pt;}
.h1f{height:18.426667pt;}
.hf{height:23.996250pt;}
.ha{height:33.328125pt;}
.h3c{height:33.586667pt;}
.h3f{height:33.600000pt;}
.h33{height:33.746667pt;}
.h48{height:33.756000pt;}
.h2a{height:33.760000pt;}
.h2e{height:34.386667pt;}
.h3d{height:34.400000pt;}
.h34{height:34.706667pt;}
.h41{height:36.306667pt;}
.h39{height:36.320000pt;}
.h45{height:36.466667pt;}
.h36{height:36.498667pt;}
.h44{height:36.506667pt;}
.h17{height:36.786667pt;}
.h15{height:36.792000pt;}
.h16{height:36.800000pt;}
.h1b{height:36.818667pt;}
.h1c{height:36.820000pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h30{height:40.221250pt;}
.h10{height:44.468750pt;}
.h5{height:47.680000pt;}
.h32{height:50.546667pt;}
.h35{height:50.586667pt;}
.h43{height:50.740000pt;}
.h31{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h38{height:55.826667pt;}
.h47{height:55.866667pt;}
.h26{height:57.758750pt;}
.h24{height:57.787500pt;}
.h23{height:59.340000pt;}
.h22{height:60.519362pt;}
.h2d{height:61.295000pt;}
.h12{height:62.781250pt;}
.hd{height:62.812500pt;}
.he{height:64.500000pt;}
.h21{height:66.383438pt;}
.h11{height:67.803750pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h46{height:70.066667pt;}
.h8{height:73.490625pt;}
.h13{height:74.232000pt;}
.h14{height:74.240000pt;}
.h1d{height:74.392000pt;}
.h1e{height:74.400000pt;}
.h3a{height:75.516000pt;}
.h3b{height:75.520000pt;}
.h42{height:94.866667pt;}
.h7{height:107.715000pt;}
.h3e{height:139.040000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2f{width:41.600000pt;}
.w30{width:43.040000pt;}
.w5f{width:47.192000pt;}
.w60{width:47.200000pt;}
.w48{width:47.992000pt;}
.w68{width:48.152000pt;}
.w26{width:48.306667pt;}
.w17{width:49.586667pt;}
.w19{width:49.746667pt;}
.w15{width:49.760000pt;}
.w1a{width:49.778667pt;}
.w16{width:51.072000pt;}
.w20{width:53.760000pt;}
.w32{width:55.026667pt;}
.w31{width:55.072000pt;}
.w25{width:57.106667pt;}
.w36{width:57.912000pt;}
.w24{width:58.418667pt;}
.w22{width:59.346667pt;}
.w84{width:62.232000pt;}
.w49{width:64.626667pt;}
.w7e{width:65.298667pt;}
.w71{width:65.312000pt;}
.w5d{width:65.426667pt;}
.w50{width:65.440000pt;}
.w56{width:65.458667pt;}
.w72{width:65.906667pt;}
.w51{width:65.920000pt;}
.w57{width:65.952000pt;}
.w58{width:66.066667pt;}
.w78{width:66.080000pt;}
.w73{width:66.098667pt;}
.w5e{width:66.112000pt;}
.w39{width:66.546667pt;}
.w3c{width:66.560000pt;}
.w67{width:66.592000pt;}
.w46{width:66.706667pt;}
.w41{width:66.720000pt;}
.w47{width:66.738667pt;}
.w3e{width:66.752000pt;}
.w4d{width:67.026667pt;}
.w6d{width:67.058667pt;}
.w6b{width:67.232000pt;}
.w6c{width:67.346667pt;}
.w4b{width:67.360000pt;}
.w4a{width:67.378667pt;}
.w6a{width:67.520000pt;}
.w4c{width:67.552000pt;}
.w18{width:68.786667pt;}
.w63{width:70.400000pt;}
.w21{width:70.432000pt;}
.w4{width:71.512000pt;}
.w5{width:71.520000pt;}
.w23{width:74.066667pt;}
.w79{width:77.432000pt;}
.w85{width:78.386667pt;}
.w13{width:78.706667pt;}
.w1e{width:78.712000pt;}
.w2d{width:83.858667pt;}
.w3a{width:86.418667pt;}
.w5a{width:87.538667pt;}
.w10{width:94.546667pt;}
.w52{width:95.072000pt;}
.w3d{width:96.480000pt;}
.w3b{width:96.498667pt;}
.w42{width:96.512000pt;}
.w2c{width:97.266667pt;}
.w29{width:97.276000pt;}
.w2a{width:97.280000pt;}
.w61{width:99.538667pt;}
.w7a{width:99.698667pt;}
.w7f{width:102.712000pt;}
.w80{width:104.018667pt;}
.w11{width:105.298667pt;}
.w12{width:105.300000pt;}
.w2{width:111.520000pt;}
.w44{width:112.312000pt;}
.w74{width:112.952000pt;}
.w14{width:116.978667pt;}
.w2b{width:117.298667pt;}
.w27{width:117.300000pt;}
.we{width:117.472000pt;}
.wf{width:117.480000pt;}
.w59{width:125.912000pt;}
.w1f{width:127.058667pt;}
.wa{width:131.538667pt;}
.w6{width:131.540000pt;}
.w75{width:139.213333pt;}
.w82{width:140.632000pt;}
.w28{width:141.306667pt;}
.w1c{width:145.293333pt;}
.w5c{width:146.733333pt;}
.w4f{width:159.213333pt;}
.w34{width:160.026667pt;}
.w40{width:161.138667pt;}
.w69{width:161.773333pt;}
.w37{width:163.693333pt;}
.w38{width:163.866667pt;}
.w9{width:171.053333pt;}
.w8{width:172.986667pt;}
.w77{width:177.138667pt;}
.wd{width:177.773333pt;}
.w2e{width:196.826667pt;}
.wb{width:203.698667pt;}
.w7c{width:206.733333pt;}
.w65{width:209.618667pt;}
.w54{width:213.458667pt;}
.w33{width:226.098667pt;}
.w6f{width:252.178667pt;}
.w1b{width:266.133333pt;}
.w70{width:267.266667pt;}
.w7d{width:267.386667pt;}
.w55{width:267.546667pt;}
.w83{width:267.573333pt;}
.w66{width:268.666667pt;}
.w45{width:269.013333pt;}
.w7{width:344.693333pt;}
.w3f{width:392.858667pt;}
.w86{width:393.493333pt;}
.w4e{width:393.498667pt;}
.w87{width:393.506667pt;}
.w62{width:398.458667pt;}
.w43{width:449.338667pt;}
.w81{width:480.218667pt;}
.w5b{width:486.298667pt;}
.w1d{width:491.440000pt;}
.w76{width:516.560000pt;}
.w35{width:541.200000pt;}
.w7b{width:546.000000pt;}
.w64{width:546.480000pt;}
.wc{width:549.040000pt;}
.w53{width:553.040000pt;}
.w6e{width:591.440000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:3.992000pt;}
.x1d{left:7.346667pt;}
.x49{left:8.800000pt;}
.x2c{left:9.906667pt;}
.x1f{left:10.866667pt;}
.x1a{left:12.480000pt;}
.x44{left:13.920000pt;}
.x30{left:14.866667pt;}
.x39{left:16.306667pt;}
.x13{left:17.906667pt;}
.x2a{left:18.880000pt;}
.x17{left:20.306667pt;}
.x1b{left:21.280000pt;}
.x2d{left:22.706667pt;}
.x4d{left:24.146667pt;}
.x1e{left:25.746667pt;}
.x2f{left:28.146667pt;}
.x5b{left:29.266667pt;}
.x3e{left:32.146667pt;}
.x16{left:33.106667pt;}
.x12{left:35.666667pt;}
.x6e{left:37.120000pt;}
.x70{left:39.200000pt;}
.x38{left:40.466667pt;}
.x53{left:41.946667pt;}
.x67{left:43.506667pt;}
.x2{left:44.799998pt;}
.x57{left:46.080000pt;}
.x20{left:47.666667pt;}
.x6c{left:48.666667pt;}
.x28{left:50.546667pt;}
.x60{left:52.146667pt;}
.x3c{left:53.146667pt;}
.x40{left:54.546667pt;}
.x83{left:55.706667pt;}
.x4e{left:56.640000pt;}
.x61{left:59.520000pt;}
.x15{left:65.626667pt;}
.x22{left:67.506667pt;}
.x23{left:68.480000pt;}
.x8d{left:70.226667pt;}
.x25{left:71.506667pt;}
.x79{left:73.266667pt;}
.x52{left:74.240000pt;}
.x6f{left:79.506667pt;}
.x64{left:80.466667pt;}
.x24{left:82.866667pt;}
.x21{left:83.840000pt;}
.x84{left:87.026667pt;}
.x89{left:88.466667pt;}
.x19{left:102.586667pt;}
.x41{left:105.160000pt;}
.x72{left:106.546667pt;}
.x1{left:113.472000pt;}
.x3f{left:115.066667pt;}
.x71{left:116.040000pt;}
.xf{left:117.792000pt;}
.x4{left:126.272000pt;}
.x11{left:130.760000pt;}
.xd{left:132.352000pt;}
.x32{left:137.320000pt;}
.xc{left:141.786667pt;}
.x63{left:145.586667pt;}
.x27{left:148.520000pt;}
.x3a{left:151.240000pt;}
.xb{left:160.666667pt;}
.x6b{left:162.120000pt;}
.x7b{left:163.240000pt;}
.x58{left:172.680000pt;}
.x91{left:178.280000pt;}
.x42{left:184.520000pt;}
.x4a{left:193.800000pt;}
.x14{left:202.920000pt;}
.xa{left:217.146667pt;}
.x8{left:218.586667pt;}
.x68{left:227.080000pt;}
.x88{left:229.000000pt;}
.x3b{left:230.600000pt;}
.x78{left:241.960000pt;}
.x4b{left:242.920000pt;}
.x50{left:256.200000pt;}
.x8e{left:259.400000pt;}
.x4f{left:264.066667pt;}
.x7a{left:265.506667pt;}
.x5d{left:269.826667pt;}
.x26{left:276.706667pt;}
.x10{left:280.066667pt;}
.x69{left:294.466667pt;}
.x8a{left:295.746667pt;}
.xe{left:305.506667pt;}
.x43{left:312.226667pt;}
.x31{left:320.066667pt;}
.x7e{left:324.546667pt;}
.x29{left:326.946667pt;}
.x73{left:332.066667pt;}
.x18{left:335.106667pt;}
.x59{left:337.026667pt;}
.x51{left:340.866667pt;}
.x65{left:343.266667pt;}
.x7c{left:348.386667pt;}
.x5{left:351.746667pt;}
.x9{left:361.186667pt;}
.x8c{left:362.466667pt;}
.x45{left:366.626667pt;}
.x85{left:370.946667pt;}
.x54{left:383.266667pt;}
.x33{left:384.706667pt;}
.x80{left:391.906667pt;}
.x90{left:393.346667pt;}
.x62{left:397.026667pt;}
.x75{left:398.946667pt;}
.x3{left:406.466667pt;}
.x66{left:410.466667pt;}
.x7d{left:415.586667pt;}
.x55{left:426.946667pt;}
.x6a{left:429.346667pt;}
.x5e{left:434.146667pt;}
.x34{left:436.586667pt;}
.x46{left:437.866667pt;}
.x2b{left:445.066667pt;}
.x6{left:454.953333pt;}
.x81{left:459.146667pt;}
.x7{left:461.053333pt;}
.x76{left:466.186667pt;}
.x56{left:482.666667pt;}
.x35{left:486.986667pt;}
.x6d{left:496.426667pt;}
.x3d{left:497.386667pt;}
.x5a{left:501.546667pt;}
.x4c{left:502.813333pt;}
.x87{left:504.906667pt;}
.x1c{left:508.746667pt;}
.x82{left:526.506667pt;}
.x8f{left:528.266667pt;}
.x77{left:533.706667pt;}
.x2e{left:540.266667pt;}
.x36{left:556.426667pt;}
.x8b{left:564.586667pt;}
.x5c{left:568.906667pt;}
.x47{left:572.586667pt;}
.x7f{left:593.866667pt;}
.x74{left:601.066667pt;}
.x37{left:606.826667pt;}
.x48{left:631.653333pt;}
.x86{left:639.493333pt;}
}




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