
    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_68d9c9633feeb610321262e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_876181c52f5160ca8d0ae115.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_06d98ab5312c1f109ed619fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_39dda980b0edf9af75323f0a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf9adae7f2329711b4d4a08b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_49acc20221a6992d368b31ae.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_54e04c3ab04e0e7c77c552c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_5199fdfa5ee3077b9a7807b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_1b42ebf233bbcc8addbbe527.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_fb96d778576070d3ed1c4496.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0493f7a4f58bb1c35f7becbb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005859;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e73673502d9ebc1047e834da.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,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:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-4.782000px;}
.ls3b{letter-spacing:-3.240000px;}
.lsd{letter-spacing:-1.800000px;}
.ls1e{letter-spacing:-1.182000px;}
.ls22{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-0.774000px;}
.ls42{letter-spacing:-0.612000px;}
.ls3f{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls20{letter-spacing:-0.206400px;}
.ls29{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.012960px;}
.ls30{letter-spacing:0.013440px;}
.lsc{letter-spacing:0.053280px;}
.ls32{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.106800px;}
.ls2d{letter-spacing:0.126600px;}
.ls26{letter-spacing:0.148800px;}
.ls7{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.186000px;}
.ls2f{letter-spacing:0.196800px;}
.ls3e{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls41{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.464400px;}
.ls9{letter-spacing:0.513600px;}
.ls14{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.562405px;}
.ls18{letter-spacing:0.562800px;}
.ls2c{letter-spacing:0.582600px;}
.ls24{letter-spacing:0.582627px;}
.ls21{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.828000px;}
.ls2a{letter-spacing:0.888000px;}
.ls28{letter-spacing:0.889855px;}
.ls16{letter-spacing:0.942000px;}
.ls11{letter-spacing:0.977452px;}
.ls2{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.163077px;}
.ls2e{letter-spacing:1.206000px;}
.ls2b{letter-spacing:1.248000px;}
.ls27{letter-spacing:1.249366px;}
.ls1b{letter-spacing:1.302000px;}
.ls25{letter-spacing:1.594006px;}
.ls40{letter-spacing:16.506720px;}
.ls36{letter-spacing:16.535280px;}
.ls38{letter-spacing:16.559280px;}
.ls3c{letter-spacing:16.679280px;}
.ls37{letter-spacing:17.216640px;}
.ls3a{letter-spacing:17.279280px;}
.lse{letter-spacing:19.386720px;}
.lsf{letter-spacing:19.530720px;}
.ls10{letter-spacing:35.436000px;}
.ls3d{letter-spacing:46.026720px;}
.ls39{letter-spacing:64.170720px;}
.ls34{letter-spacing:97.459920px;}
.ls33{letter-spacing:112.579920px;}
.ls31{letter-spacing:119.779920px;}
.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;}
}
.ws24{word-spacing:-59.772960px;}
.ws27{word-spacing:-59.760000px;}
.ws28{word-spacing:-43.200720px;}
.ws0{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.242000px;}
.ws1d{word-spacing:-16.188000px;}
.ws21{word-spacing:-16.146000px;}
.wsd{word-spacing:-16.020000px;}
.wse{word-spacing:-15.882000px;}
.ws1b{word-spacing:-15.828000px;}
.ws16{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.600000px;}
.ws19{word-spacing:-15.552000px;}
.ws1e{word-spacing:-15.522600px;}
.ws11{word-spacing:-15.404400px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws29{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.136800px;}
.wsf{word-spacing:-15.126000px;}
.ws1f{word-spacing:-15.088800px;}
.ws20{word-spacing:-15.066600px;}
.ws13{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.ws1a{word-spacing:-14.760000px;}
.ws18{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws2a{word-spacing:-14.328000px;}
.ws14{word-spacing:-14.166000px;}
.ws15{word-spacing:-13.758000px;}
.wsb{word-spacing:-13.140000px;}
.ws25{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.ws23{word-spacing:1.728000px;}
.ws26{word-spacing:1.872000px;}
._4d{margin-left:-12.618720px;}
._1a{margin-left:-9.967680px;}
._26{margin-left:-7.888320px;}
._8{margin-left:-5.940000px;}
._6{margin-left:-4.430400px;}
._7{margin-left:-2.958720px;}
._2{margin-left:-1.192320px;}
._0{width:1.185840px;}
._5{width:2.490000px;}
._10{width:4.422240px;}
._f{width:6.026400px;}
._c{width:7.479360px;}
._b{width:8.605440px;}
._14{width:9.657600px;}
._d{width:10.697040px;}
._e{width:11.774640px;}
._13{width:12.908160px;}
._4e{width:13.917360px;}
._15{width:16.135200px;}
._11{width:17.151120px;}
._12{width:18.697200px;}
._31{width:19.959840px;}
._2d{width:20.975760px;}
._16{width:22.290480px;}
._3d{width:23.366160px;}
._17{width:24.441840px;}
._4a{width:25.816320px;}
._39{width:26.951760px;}
._36{width:28.266480px;}
._1f{width:30.659280px;}
._a{width:32.330160px;}
._9{width:34.086720px;}
._2c{width:36.019440px;}
._3{width:37.346400px;}
._4{width:38.746080px;}
._35{width:39.851280px;}
._29{width:41.055120px;}
._2b{width:42.250320px;}
._21{width:43.326000px;}
._22{width:45.596880px;}
._19{width:46.612800px;}
._27{width:48.345840px;}
._20{width:49.959360px;}
._37{width:55.287360px;}
._48{width:60.406560px;}
._28{width:63.644400px;}
._4f{width:64.818480px;}
._49{width:67.034160px;}
._3b{width:68.740560px;}
._40{width:70.935120px;}
._45{width:72.847440px;}
._44{width:74.675280px;}
._42{width:75.954960px;}
._4b{width:77.303760px;}
._33{width:80.018640px;}
._32{width:82.856160px;}
._34{width:87.787440px;}
._24{width:89.580240px;}
._1e{width:91.416000px;}
._1d{width:93.204000px;}
._2f{width:97.975440px;}
._2e{width:105.146640px;}
._3e{width:106.671600px;}
._3f{width:107.687520px;}
._4c{width:110.355360px;}
._30{width:112.170960px;}
._2a{width:118.085760px;}
._1b{width:120.089280px;}
._38{width:122.841600px;}
._41{width:126.930240px;}
._43{width:132.258240px;}
._47{width:133.324560px;}
._3a{width:140.436000px;}
._3c{width:181.978560px;}
._1c{width:201.240000px;}
._25{width:217.526400px;}
._46{width:253.800720px;}
._23{width:597.779280px;}
._18{width:609.253200px;}
._1{width:1100.028000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y140{bottom:-32.040000px;}
.y185{bottom:-18.720000px;}
.y125{bottom:-17.355000px;}
.y13f{bottom:-12.240000px;}
.y13a{bottom:-12.060000px;}
.y12a{bottom:-3.990000px;}
.y0{bottom:0.000000px;}
.y1a1{bottom:0.180000px;}
.y16e{bottom:0.360000px;}
.y15e{bottom:1.080000px;}
.y163{bottom:1.260000px;}
.y2{bottom:1.440000px;}
.y29{bottom:5.760000px;}
.y3c{bottom:6.120000px;}
.yc9{bottom:6.150000px;}
.ya7{bottom:6.300000px;}
.y1be{bottom:6.345000px;}
.y14b{bottom:6.480000px;}
.y89{bottom:6.660000px;}
.y11d{bottom:6.840000px;}
.y90{bottom:7.020000px;}
.y8b{bottom:7.050000px;}
.y9b{bottom:7.065000px;}
.yf9{bottom:7.194000px;}
.yae{bottom:7.200000px;}
.y13e{bottom:7.560000px;}
.y13c{bottom:7.740000px;}
.y139{bottom:7.770000px;}
.y124{bottom:7.845000px;}
.y7{bottom:8.280000px;}
.y1ee{bottom:9.180000px;}
.y136{bottom:10.005000px;}
.y203{bottom:10.440000px;}
.y1f6{bottom:10.620000px;}
.y27{bottom:11.340000px;}
.y213{bottom:12.600000px;}
.y129{bottom:13.110000px;}
.y159{bottom:13.500000px;}
.y130{bottom:13.965000px;}
.y132{bottom:14.325000px;}
.y1bc{bottom:15.660000px;}
.y22f{bottom:15.840000px;}
.yb9{bottom:16.020000px;}
.yc4{bottom:16.050000px;}
.ya5{bottom:16.200000px;}
.ye4{bottom:16.230000px;}
.y1c1{bottom:18.360000px;}
.y1e9{bottom:19.080000px;}
.y21c{bottom:19.125000px;}
.y1ce{bottom:19.260000px;}
.y1f3{bottom:20.520000px;}
.y178{bottom:21.060000px;}
.y15a{bottom:21.240000px;}
.y1bb{bottom:25.560000px;}
.y3b{bottom:25.920000px;}
.yc8{bottom:25.950000px;}
.ya6{bottom:26.100000px;}
.ye5{bottom:26.130000px;}
.y1e1{bottom:26.280000px;}
.y221{bottom:26.310000px;}
.y135{bottom:27.645000px;}
.y1ed{bottom:28.980000px;}
.y219{bottom:29.025000px;}
.y201{bottom:30.240000px;}
.y1f0{bottom:30.420000px;}
.y26{bottom:31.320000px;}
.y1b1{bottom:32.220000px;}
.y210{bottom:32.580000px;}
.y207{bottom:35.820000px;}
.y22a{bottom:35.865000px;}
.y6{bottom:36.000000px;}
.y22d{bottom:36.045000px;}
.y1c0{bottom:38.160000px;}
.y1e5{bottom:38.700000px;}
.y1e8{bottom:38.880000px;}
.y215{bottom:38.925000px;}
.y1ff{bottom:39.780000px;}
.y21e{bottom:39.960000px;}
.y1f2{bottom:40.320000px;}
.y1fc{bottom:41.040000px;}
.y1c6{bottom:41.220000px;}
.y205{bottom:45.360000px;}
.y224{bottom:45.540000px;}
.y228{bottom:45.585000px;}
.y20b{bottom:45.720000px;}
.y12e{bottom:45.825000px;}
.y3a{bottom:45.900000px;}
.y232{bottom:45.945000px;}
.y1e0{bottom:46.620000px;}
.y220{bottom:46.650000px;}
.y234{bottom:48.420000px;}
.y240{bottom:48.780000px;}
.y218{bottom:48.825000px;}
.y1ec{bottom:48.960000px;}
.y200{bottom:49.860000px;}
.y1ef{bottom:50.040000px;}
.y1f5{bottom:50.220000px;}
.y1f8{bottom:50.760000px;}
.y25{bottom:51.120000px;}
.y20f{bottom:52.200000px;}
.y212{bottom:52.380000px;}
.y206{bottom:55.440000px;}
.y209{bottom:55.620000px;}
.y226{bottom:55.800000px;}
.y22c{bottom:55.845000px;}
.y229{bottom:56.025000px;}
.yb{bottom:57.096000px;}
.y5{bottom:57.960000px;}
.y235{bottom:58.500000px;}
.y237{bottom:58.680000px;}
.y214{bottom:58.725000px;}
.y1e7{bottom:58.860000px;}
.y21b{bottom:58.905000px;}
.y1e4{bottom:59.040000px;}
.y1f1{bottom:60.120000px;}
.y1fb{bottom:60.660000px;}
.y1f9{bottom:60.840000px;}
.y1fd{bottom:61.020000px;}
.y20a{bottom:65.520000px;}
.y39{bottom:65.700000px;}
.y23b{bottom:65.730000px;}
.y231{bottom:65.745000px;}
.y23f{bottom:68.580000px;}
.y1eb{bottom:68.760000px;}
.y217{bottom:68.805000px;}
.y239{bottom:69.840000px;}
.y202{bottom:70.020000px;}
.y1f4{bottom:70.065000px;}
.y24{bottom:70.560000px;}
.y211{bottom:72.180000px;}
.y208{bottom:75.420000px;}
.y225{bottom:75.600000px;}
.y23d{bottom:75.630000px;}
.y22b{bottom:75.645000px;}
.y22e{bottom:75.825000px;}
.y16b{bottom:78.336000px;}
.y236{bottom:78.480000px;}
.y1e6{bottom:78.660000px;}
.y21a{bottom:78.705000px;}
.y116{bottom:79.596000px;}
.y1b0{bottom:80.316000px;}
.y1fa{bottom:80.820000px;}
.y12c{bottom:80.925000px;}
.y4{bottom:81.930000px;}
.y1da{bottom:85.356000px;}
.y38{bottom:85.500000px;}
.y23c{bottom:85.530000px;}
.y230{bottom:85.545000px;}
.y250{bottom:86.436000px;}
.y241{bottom:88.380000px;}
.y1ea{bottom:88.560000px;}
.y216{bottom:88.605000px;}
.y16c{bottom:89.994000px;}
.y23{bottom:90.360000px;}
.y121{bottom:90.576000px;}
.y1e2{bottom:94.905000px;}
.y86{bottom:95.796000px;}
.y20d{bottom:97.065000px;}
.y176{bottom:97.596000px;}
.y115{bottom:99.396000px;}
.y1b4{bottom:99.576000px;}
.y4e{bottom:104.076000px;}
.y37{bottom:105.330000px;}
.y1d9{bottom:105.336000px;}
.y24f{bottom:106.416000px;}
.yc1{bottom:106.776000px;}
.yfa{bottom:106.956000px;}
.y9{bottom:108.570000px;}
.y22{bottom:110.190000px;}
.y120{bottom:112.716000px;}
.yef{bottom:113.034000px;}
.y85{bottom:115.596000px;}
.y175{bottom:116.856000px;}
.y3{bottom:118.110000px;}
.y1b3{bottom:118.836000px;}
.y17f{bottom:119.025000px;}
.y15c{bottom:119.160000px;}
.y114{bottom:119.196000px;}
.yed{bottom:121.356000px;}
.y4d{bottom:124.056000px;}
.y36{bottom:125.130000px;}
.y1d8{bottom:125.136000px;}
.y284{bottom:126.216000px;}
.y24e{bottom:126.576000px;}
.yb2{bottom:129.996000px;}
.y21{bottom:130.170000px;}
.y8{bottom:130.530000px;}
.yee{bottom:132.834000px;}
.y11f{bottom:134.856000px;}
.y84{bottom:135.396000px;}
.y174{bottom:136.116000px;}
.y8e{bottom:136.305000px;}
.y1b2{bottom:138.096000px;}
.y113{bottom:138.996000px;}
.y4c{bottom:143.856000px;}
.yf8{bottom:144.576000px;}
.y35{bottom:145.110000px;}
.y1d7{bottom:145.296000px;}
.y283{bottom:146.016000px;}
.y24d{bottom:146.376000px;}
.y19f{bottom:147.645000px;}
.y18d{bottom:147.810000px;}
.y20{bottom:150.330000px;}
.yc0{bottom:153.210000px;}
.yb4{bottom:154.299000px;}
.y83{bottom:155.190000px;}
.y173{bottom:155.370000px;}
.y8d{bottom:156.105000px;}
.y11e{bottom:156.990000px;}
.y19d{bottom:157.350000px;}
.y112{bottom:158.790000px;}
.y21d{bottom:160.950000px;}
.y4b{bottom:163.650000px;}
.y34{bottom:164.910000px;}
.y1d6{bottom:165.450000px;}
.y282{bottom:165.990000px;}
.y24c{bottom:167.430000px;}
.y19e{bottom:167.445000px;}
.yf7{bottom:167.970000px;}
.y9f{bottom:168.510000px;}
.yc7{bottom:168.705000px;}
.y1f{bottom:170.130000px;}
.yb3{bottom:174.279000px;}
.y172{bottom:174.630000px;}
.y82{bottom:174.990000px;}
.ybf{bottom:176.430000px;}
.y1af{bottom:176.610000px;}
.y111{bottom:178.770000px;}
.y11c{bottom:179.130000px;}
.y4a{bottom:183.450000px;}
.y33{bottom:184.710000px;}
.y1d5{bottom:185.430000px;}
.y281{bottom:185.790000px;}
.y24b{bottom:187.770000px;}
.y9e{bottom:188.490000px;}
.yc6{bottom:188.505000px;}
.y1e{bottom:189.570000px;}
.yf6{bottom:191.190000px;}
.yda{bottom:191.910000px;}
.y171{bottom:193.890000px;}
.y81{bottom:194.970000px;}
.y1ae{bottom:195.870000px;}
.y110{bottom:198.570000px;}
.y11b{bottom:201.090000px;}
.y49{bottom:203.250000px;}
.y32{bottom:204.510000px;}
.y1d4{bottom:205.230000px;}
.y280{bottom:205.590000px;}
.y24a{bottom:207.930000px;}
.y1d{bottom:209.370000px;}
.yd9{bottom:211.710000px;}
.y170{bottom:213.330000px;}
.yf5{bottom:214.410000px;}
.y80{bottom:214.770000px;}
.y1ad{bottom:215.130000px;}
.ybe{bottom:217.830000px;}
.y10f{bottom:218.370000px;}
.y48{bottom:223.230000px;}
.y31{bottom:224.310000px;}
.y1d3{bottom:225.210000px;}
.y27f{bottom:225.390000px;}
.y249{bottom:228.090000px;}
.y1c{bottom:229.350000px;}
.y16f{bottom:232.590000px;}
.y7f{bottom:234.570000px;}
.yf4{bottom:237.630000px;}
.y10e{bottom:238.170000px;}
.ybd{bottom:241.050000px;}
.y47{bottom:243.030000px;}
.y30{bottom:244.290000px;}
.y1d2{bottom:245.010000px;}
.y27e{bottom:245.190000px;}
.y11a{bottom:245.370000px;}
.y248{bottom:248.070000px;}
.y1b{bottom:249.150000px;}
.y16d{bottom:251.850000px;}
.y1ac{bottom:253.830000px;}
.y20c{bottom:254.190000px;}
.y7e{bottom:254.370000px;}
.y10d{bottom:257.970000px;}
.yf3{bottom:260.850000px;}
.y46{bottom:262.830000px;}
.y2f{bottom:264.090000px;}
.ybc{bottom:264.270000px;}
.y27d{bottom:265.170000px;}
.y119{bottom:267.510000px;}
.y247{bottom:268.050000px;}
.y1a{bottom:268.950000px;}
.y15b{bottom:271.155000px;}
.y1ab{bottom:273.135000px;}
.y7d{bottom:274.215000px;}
.y10c{bottom:277.995000px;}
.y45{bottom:282.675000px;}
.y2e{bottom:283.890000px;}
.yf2{bottom:284.115000px;}
.y27c{bottom:285.015000px;}
.y1d1{bottom:287.175000px;}
.ybb{bottom:287.535000px;}
.y246{bottom:288.075000px;}
.y19{bottom:289.110000px;}
.y118{bottom:289.695000px;}
.y16a{bottom:290.415000px;}
.y1aa{bottom:292.395000px;}
.y7c{bottom:294.195000px;}
.y10b{bottom:297.795000px;}
.y44{bottom:302.475000px;}
.y2d{bottom:303.690000px;}
.y27b{bottom:304.815000px;}
.yf1{bottom:307.515000px;}
.y245{bottom:308.055000px;}
.y18{bottom:308.910000px;}
.y169{bottom:309.675000px;}
.yba{bottom:310.935000px;}
.y1d0{bottom:311.475000px;}
.y1a9{bottom:311.655000px;}
.y117{bottom:311.835000px;}
.y7b{bottom:313.995000px;}
.y10a{bottom:317.595000px;}
.y43{bottom:322.455000px;}
.y2c{bottom:323.490000px;}
.y27a{bottom:324.615000px;}
.y244{bottom:327.855000px;}
.y17{bottom:328.890000px;}
.y168{bottom:328.935000px;}
.yf0{bottom:330.735000px;}
.y1a8{bottom:330.915000px;}
.y7a{bottom:333.795000px;}
.yb8{bottom:334.155000px;}
.y109{bottom:337.395000px;}
.y42{bottom:342.255000px;}
.y2b{bottom:343.470000px;}
.y279{bottom:344.415000px;}
.y243{bottom:347.475000px;}
.y167{bottom:348.195000px;}
.y16{bottom:348.690000px;}
.y1a7{bottom:350.175000px;}
.y79{bottom:353.595000px;}
.yec{bottom:353.955000px;}
.y1cd{bottom:355.575000px;}
.y108{bottom:357.555000px;}
.y41{bottom:362.055000px;}
.y2a{bottom:363.270000px;}
.y20e{bottom:364.035000px;}
.y278{bottom:364.395000px;}
.y166{bottom:367.455000px;}
.y242{bottom:367.635000px;}
.y15{bottom:368.490000px;}
.y1a6{bottom:369.435000px;}
.y78{bottom:373.395000px;}
.yb7{bottom:375.375000px;}
.yd8{bottom:377.175000px;}
.y107{bottom:377.535000px;}
.y1cf{bottom:380.955000px;}
.y40{bottom:381.855000px;}
.y277{bottom:384.195000px;}
.y23e{bottom:385.455000px;}
.y165{bottom:386.715000px;}
.y14{bottom:388.335000px;}
.y1a5{bottom:388.695000px;}
.y77{bottom:393.375000px;}
.y106{bottom:397.335000px;}
.yb6{bottom:398.595000px;}
.yeb{bottom:400.395000px;}
.y3f{bottom:401.655000px;}
.y276{bottom:403.995000px;}
.y164{bottom:405.975000px;}
.y1cc{bottom:406.155000px;}
.y1a4{bottom:407.955000px;}
.y76{bottom:413.175000px;}
.y105{bottom:417.135000px;}
.y3e{bottom:421.275000px;}
.yb5{bottom:421.995000px;}
.yea{bottom:423.615000px;}
.y275{bottom:423.795000px;}
.y162{bottom:425.235000px;}
.y1a3{bottom:427.215000px;}
.y1cb{bottom:430.455000px;}
.y75{bottom:432.975000px;}
.y104{bottom:436.575000px;}
.y3d{bottom:441.435000px;}
.y274{bottom:443.595000px;}
.y161{bottom:444.675000px;}
.yb1{bottom:445.215000px;}
.y1a2{bottom:446.475000px;}
.ye9{bottom:447.015000px;}
.y74{bottom:452.775000px;}
.y13{bottom:460.335000px;}
.y204{bottom:461.775000px;}
.y273{bottom:463.215000px;}
.y160{bottom:463.935000px;}
.y103{bottom:465.735000px;}
.y1a0{bottom:465.915000px;}
.y9d{bottom:468.435000px;}
.ye8{bottom:470.235000px;}
.y73{bottom:472.575000px;}
.y1ca{bottom:474.735000px;}
.y272{bottom:483.015000px;}
.y15f{bottom:483.195000px;}
.y18c{bottom:485.175000px;}
.y102{bottom:485.355000px;}
.yb0{bottom:491.655000px;}
.y72{bottom:492.555000px;}
.ye7{bottom:493.455000px;}
.y23a{bottom:495.795000px;}
.y15d{bottom:502.455000px;}
.y271{bottom:503.355000px;}
.y19c{bottom:504.435000px;}
.y71{bottom:512.355000px;}
.y122{bottom:514.155000px;}
.y101{bottom:514.515000px;}
.yaf{bottom:514.875000px;}
.ye6{bottom:516.675000px;}
.y1c9{bottom:518.835000px;}
.y158{bottom:522.435000px;}
.y19b{bottom:523.695000px;}
.y70{bottom:532.155000px;}
.y100{bottom:534.315000px;}
.yad{bottom:538.095000px;}
.ye3{bottom:539.895000px;}
.y19a{bottom:542.955000px;}
.y270{bottom:543.675000px;}
.y6f{bottom:551.955000px;}
.yff{bottom:554.145000px;}
.yac{bottom:561.525000px;}
.y199{bottom:562.245000px;}
.y1c5{bottom:563.145000px;}
.y26f{bottom:563.505000px;}
.y1fe{bottom:566.205000px;}
.y157{bottom:567.645000px;}
.y6e{bottom:571.785000px;}
.yfe{bottom:573.945000px;}
.ye2{bottom:581.325000px;}
.y198{bottom:581.505000px;}
.y26e{bottom:583.305000px;}
.yab{bottom:584.745000px;}
.y156{bottom:587.445000px;}
.y6d{bottom:591.765000px;}
.yfd{bottom:593.565000px;}
.y238{bottom:600.405000px;}
.y197{bottom:600.765000px;}
.y26d{bottom:603.105000px;}
.ye1{bottom:604.545000px;}
.y1c8{bottom:607.245000px;}
.y155{bottom:607.605000px;}
.yaa{bottom:607.965000px;}
.y6c{bottom:611.565000px;}
.y196{bottom:620.025000px;}
.yfc{bottom:622.365000px;}
.y26c{bottom:622.905000px;}
.y154{bottom:627.585000px;}
.ye0{bottom:627.765000px;}
.ya9{bottom:631.185000px;}
.y6b{bottom:631.365000px;}
.y1c7{bottom:632.445000px;}
.y195{bottom:639.285000px;}
.y26b{bottom:643.065000px;}
.y153{bottom:647.025000px;}
.y134{bottom:647.460000px;}
.ydf{bottom:650.985000px;}
.y6a{bottom:651.165000px;}
.ya8{bottom:654.405000px;}
.y1c4{bottom:657.825000px;}
.y194{bottom:658.545000px;}
.y1f7{bottom:659.445000px;}
.y26a{bottom:663.045000px;}
.y69{bottom:670.965000px;}
.yde{bottom:674.205000px;}
.ya4{bottom:677.625000px;}
.y193{bottom:677.805000px;}
.y152{bottom:681.585000px;}
.y269{bottom:682.845000px;}
.y68{bottom:690.945000px;}
.y133{bottom:692.385000px;}
.y233{bottom:693.645000px;}
.y131{bottom:694.080000px;}
.y192{bottom:697.245000px;}
.ydd{bottom:697.605000px;}
.y1c3{bottom:701.925000px;}
.y151{bottom:702.285000px;}
.y268{bottom:702.645000px;}
.y67{bottom:710.745000px;}
.y191{bottom:716.505000px;}
.ya3{bottom:719.025000px;}
.ydc{bottom:720.825000px;}
.y267{bottom:722.625000px;}
.y150{bottom:723.525000px;}
.y66{bottom:730.545000px;}
.y190{bottom:735.765000px;}
.ya2{bottom:742.245000px;}
.y266{bottom:742.425000px;}
.ydb{bottom:744.045000px;}
.y14f{bottom:744.225000px;}
.y1c2{bottom:746.205000px;}
.y12f{bottom:749.520000px;}
.y65{bottom:750.345000px;}
.y18f{bottom:755.025000px;}
.y265{bottom:762.405000px;}
.y12b{bottom:763.560000px;}
.y14e{bottom:764.925000px;}
.ya1{bottom:765.465000px;}
.yd7{bottom:767.265000px;}
.y64{bottom:770.145000px;}
.y18e{bottom:774.285000px;}
.y264{bottom:782.385000px;}
.y14d{bottom:785.445000px;}
.ya0{bottom:788.865000px;}
.y63{bottom:790.125000px;}
.y1bf{bottom:790.305000px;}
.yc5{bottom:790.485000px;}
.y17e{bottom:793.545000px;}
.y263{bottom:802.545000px;}
.y227{bottom:803.985000px;}
.y14c{bottom:805.965000px;}
.y62{bottom:809.925000px;}
.y9c{bottom:812.085000px;}
.y18b{bottom:812.805000px;}
.y123{bottom:812.880000px;}
.yd6{bottom:813.705000px;}
.y262{bottom:823.425000px;}
.y14a{bottom:825.945000px;}
.y12d{bottom:827.205000px;}
.y61{bottom:829.725000px;}
.y18a{bottom:832.065000px;}
.y1bd{bottom:834.405000px;}
.y8c{bottom:835.305000px;}
.yd5{bottom:837.105000px;}
.y28{bottom:842.550000px;}
.y261{bottom:843.270000px;}
.y149{bottom:846.510000px;}
.y60{bottom:849.570000px;}
.y189{bottom:851.370000px;}
.y128{bottom:854.460000px;}
.y9a{bottom:858.570000px;}
.y1ba{bottom:858.930000px;}
.yd4{bottom:860.370000px;}
.y260{bottom:863.070000px;}
.y1e3{bottom:866.850000px;}
.y148{bottom:867.210000px;}
.y5f{bottom:869.370000px;}
.y188{bottom:870.630000px;}
.y12{bottom:873.870000px;}
.y99{bottom:881.790000px;}
.yd3{bottom:883.590000px;}
.y25f{bottom:884.130000px;}
.y147{bottom:887.730000px;}
.y5e{bottom:889.350000px;}
.y187{bottom:889.890000px;}
.y11{bottom:898.890000px;}
.y25e{bottom:904.470000px;}
.y98{bottom:905.010000px;}
.yd2{bottom:906.810000px;}
.y1b9{bottom:907.710000px;}
.y223{bottom:908.430000px;}
.y5d{bottom:909.150000px;}
.y146{bottom:914.190000px;}
.y10{bottom:918.690000px;}
.y127{bottom:920.310000px;}
.y25d{bottom:924.450000px;}
.y1b8{bottom:927.870000px;}
.y97{bottom:928.410000px;}
.y186{bottom:928.590000px;}
.y5c{bottom:928.950000px;}
.yd1{bottom:930.030000px;}
.yf{bottom:933.630000px;}
.y145{bottom:933.990000px;}
.y25c{bottom:944.250000px;}
.y184{bottom:947.850000px;}
.y1b7{bottom:948.030000px;}
.y5b{bottom:948.750000px;}
.y96{bottom:951.630000px;}
.yd0{bottom:953.250000px;}
.y144{bottom:954.150000px;}
.ye{bottom:955.050000px;}
.y25b{bottom:964.050000px;}
.y183{bottom:967.110000px;}
.y1b6{bottom:968.010000px;}
.y5a{bottom:968.550000px;}
.y126{bottom:972.150000px;}
.y143{bottom:973.950000px;}
.y95{bottom:974.850000px;}
.ycf{bottom:976.650000px;}
.yd{bottom:978.270000px;}
.y25a{bottom:984.930000px;}
.y182{bottom:986.370000px;}
.y1b5{bottom:987.810000px;}
.y59{bottom:988.530000px;}
.y142{bottom:993.390000px;}
.y94{bottom:998.070000px;}
.yce{bottom:999.870000px;}
.y259{bottom:1005.090000px;}
.y181{bottom:1005.630000px;}
.y58{bottom:1008.330000px;}
.yc{bottom:1009.950000px;}
.y222{bottom:1013.010000px;}
.y93{bottom:1021.290000px;}
.ycd{bottom:1023.090000px;}
.y180{bottom:1024.890000px;}
.y258{bottom:1025.070000px;}
.y57{bottom:1028.130000px;}
.ya{bottom:1036.230000px;}
.y17d{bottom:1044.150000px;}
.y92{bottom:1044.510000px;}
.y257{bottom:1044.870000px;}
.ycc{bottom:1046.310000px;}
.y1df{bottom:1046.490000px;}
.y56{bottom:1047.930000px;}
.y141{bottom:1050.270000px;}
.y1{bottom:1052.070000px;}
.y17c{bottom:1063.410000px;}
.y256{bottom:1065.930000px;}
.y1de{bottom:1066.290000px;}
.y55{bottom:1067.730000px;}
.y91{bottom:1067.910000px;}
.ycb{bottom:1069.530000px;}
.y13d{bottom:1072.410000px;}
.y17b{bottom:1082.670000px;}
.y255{bottom:1086.270000px;}
.y1dd{bottom:1086.630000px;}
.y54{bottom:1087.710000px;}
.y8f{bottom:1091.130000px;}
.yca{bottom:1092.750000px;}
.y13b{bottom:1094.370000px;}
.y17a{bottom:1101.930000px;}
.y254{bottom:1106.250000px;}
.y1dc{bottom:1106.970000px;}
.y53{bottom:1107.150000px;}
.yfb{bottom:1107.510000px;}
.y8a{bottom:1114.350000px;}
.yc3{bottom:1116.150000px;}
.y138{bottom:1116.510000px;}
.y21f{bottom:1116.690000px;}
.y179{bottom:1121.220000px;}
.y253{bottom:1126.080000px;}
.y1db{bottom:1127.160000px;}
.y52{bottom:1127.340000px;}
.y88{bottom:1137.600000px;}
.y137{bottom:1138.680000px;}
.y177{bottom:1141.380000px;}
.y252{bottom:1145.880000px;}
.y51{bottom:1147.140000px;}
.yc2{bottom:1157.400000px;}
.y251{bottom:1166.040000px;}
.y87{bottom:1166.580000px;}
.y50{bottom:1166.940000px;}
.y4f{bottom:1195.560000px;}
.h3b{height:13.860000px;}
.h35{height:14.040000px;}
.h32{height:14.760000px;}
.h38{height:14.796000px;}
.h33{height:14.940000px;}
.h26{height:18.900000px;}
.hf{height:19.800000px;}
.h42{height:19.836000px;}
.h2e{height:19.980000px;}
.h3d{height:20.016000px;}
.h2f{height:20.520000px;}
.h2d{height:20.556000px;}
.h2c{height:20.700000px;}
.h40{height:20.880000px;}
.h24{height:21.240000px;}
.h22{height:21.420000px;}
.h23{height:21.456000px;}
.h13{height:21.600000px;}
.h14{height:21.636000px;}
.h25{height:21.780000px;}
.h27{height:26.640000px;}
.h36{height:35.100000px;}
.h30{height:35.316000px;}
.hb{height:37.771172px;}
.h29{height:39.240000px;}
.h2a{height:39.420000px;}
.h1a{height:39.600000px;}
.h1b{height:39.636000px;}
.h18{height:39.780000px;}
.h1e{height:39.816000px;}
.h11{height:41.726953px;}
.h16{height:42.164648px;}
.h41{height:46.080000px;}
.h4b{height:49.255313px;}
.h46{height:50.364141px;}
.he{height:54.421875px;}
.h9{height:58.651172px;}
.hd{height:60.226875px;}
.h43{height:60.660000px;}
.h50{height:60.696000px;}
.h53{height:61.423863px;}
.h21{height:62.211094px;}
.h3e{height:64.116000px;}
.h2b{height:64.980000px;}
.h5{height:65.010937px;}
.h20{height:65.486953px;}
.h12{height:65.884219px;}
.ha{height:66.757500px;}
.h7{height:67.565039px;}
.h6{height:70.664062px;}
.h3c{height:71.820000px;}
.h3{height:73.722656px;}
.h49{height:87.840000px;}
.h4f{height:88.020000px;}
.h47{height:88.056000px;}
.h3f{height:90.180000px;}
.h4d{height:92.340000px;}
.h8{height:96.508125px;}
.h51{height:99.180000px;}
.h4a{height:99.216000px;}
.h4{height:105.060586px;}
.h52{height:105.120000px;}
.h45{height:105.300000px;}
.h4e{height:105.336000px;}
.h48{height:109.620000px;}
.h28{height:136.980000px;}
.h2{height:156.630000px;}
.h34{height:187.560000px;}
.h44{height:197.850000px;}
.h4c{height:202.170000px;}
.h37{height:245.370000px;}
.h31{height:246.060000px;}
.h1f{height:254.190000px;}
.h15{height:300.675000px;}
.h39{height:303.150000px;}
.h3a{height:322.410000px;}
.h19{height:336.810000px;}
.h17{height:365.250000px;}
.h1c{height:365.295000px;}
.h10{height:376.950000px;}
.hc{height:402.015000px;}
.h1d{height:411.690000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w28{width:37.296000px;}
.w8{width:37.656000px;}
.w20{width:47.016000px;}
.w27{width:48.456000px;}
.w11{width:50.760000px;}
.w1f{width:60.300000px;}
.w24{width:67.860000px;}
.w21{width:71.316000px;}
.w26{width:77.400000px;}
.w13{width:85.680000px;}
.w16{width:87.120000px;}
.w18{width:87.480000px;}
.w1c{width:89.136000px;}
.w9{width:89.820000px;}
.w25{width:92.016000px;}
.w14{width:96.336000px;}
.w1e{width:98.820000px;}
.w1a{width:110.196000px;}
.w12{width:110.340000px;}
.w1d{width:113.040000px;}
.wc{width:115.020000px;}
.w2{width:127.656000px;}
.w17{width:156.450000px;}
.w19{width:156.810000px;}
.w4{width:157.170000px;}
.wd{width:159.870000px;}
.w29{width:170.640000px;}
.w22{width:175.350000px;}
.w2c{width:178.590000px;}
.w2b{width:189.750000px;}
.w2a{width:195.330000px;}
.w10{width:206.100000px;}
.wf{width:209.340000px;}
.w23{width:237.630000px;}
.w1b{width:248.610000px;}
.wa{width:263.190000px;}
.w15{width:279.615000px;}
.w6{width:304.815000px;}
.we{width:330.870000px;}
.wb{width:395.025000px;}
.w7{width:473.505000px;}
.w3{width:499.785000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x48{left:1.080000px;}
.x29{left:2.265000px;}
.xf{left:5.400000px;}
.x6{left:8.100000px;}
.x2f{left:10.290000px;}
.x19{left:14.760000px;}
.x23{left:22.935000px;}
.x46{left:26.100000px;}
.x1d{left:27.390000px;}
.x1c{left:29.730000px;}
.x16{left:31.500000px;}
.x36{left:32.580000px;}
.x4{left:34.020000px;}
.x37{left:36.720000px;}
.x3d{left:38.160000px;}
.x3e{left:41.940000px;}
.x1e{left:43.410000px;}
.x1f{left:47.550000px;}
.x18{left:49.530000px;}
.x1{left:54.000000px;}
.xb{left:55.980000px;}
.x1b{left:59.790000px;}
.x13{left:62.459987px;}
.x44{left:64.830000px;}
.x38{left:66.780000px;}
.x33{left:68.220000px;}
.x41{left:71.099987px;}
.x34{left:72.180000px;}
.x1a{left:74.910000px;}
.x20{left:76.530000px;}
.x39{left:78.120000px;}
.xa{left:80.999987px;}
.x47{left:87.690000px;}
.x45{left:91.110000px;}
.xe{left:92.556000px;}
.x53{left:95.796000px;}
.x3f{left:97.950000px;}
.x7{left:102.285000px;}
.x21{left:103.536000px;}
.x24{left:104.865000px;}
.x56{left:108.035987px;}
.x2{left:115.950000px;}
.x3a{left:117.390000px;}
.x3b{left:121.350000px;}
.x40{left:129.810000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x35{left:137.190000px;}
.x49{left:168.870000px;}
.x3{left:181.650000px;}
.x3c{left:193.890000px;}
.x30{left:216.029987px;}
.xd{left:240.689987px;}
.x2e{left:248.400000px;}
.x31{left:258.690000px;}
.x2d{left:268.094987px;}
.x14{left:278.894987px;}
.x11{left:294.554987px;}
.x15{left:308.235000px;}
.x42{left:324.074987px;}
.x22{left:337.500000px;}
.x2b{left:338.760000px;}
.x27{left:342.074987px;}
.x32{left:355.035000px;}
.x26{left:357.554987px;}
.xc{left:363.855000px;}
.x25{left:385.454987px;}
.x2c{left:386.460000px;}
.x43{left:412.275000px;}
.x4a{left:419.835000px;}
.x17{left:424.155000px;}
.x10{left:445.575000px;}
.x12{left:460.184987px;}
.x54{left:466.485000px;}
.x4b{left:511.125000px;}
.x4f{left:547.305000px;}
.x28{left:584.280000px;}
.x2a{left:598.424987px;}
.x50{left:617.325000px;}
.x4c{left:626.550000px;}
.x55{left:658.410000px;}
.x9{left:681.450000px;}
.x51{left:711.690000px;}
.x4d{left:727.530000px;}
.x4e{left:789.990000px;}
.x52{left:791.430000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-4.250667pt;}
.ls3b{letter-spacing:-2.880000pt;}
.lsd{letter-spacing:-1.600000pt;}
.ls1e{letter-spacing:-1.050667pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.688000pt;}
.ls42{letter-spacing:-0.544000pt;}
.ls3f{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls20{letter-spacing:-0.183467pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.011520pt;}
.ls30{letter-spacing:0.011947pt;}
.lsc{letter-spacing:0.047360pt;}
.ls32{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.094933pt;}
.ls2d{letter-spacing:0.112533pt;}
.ls26{letter-spacing:0.132267pt;}
.ls7{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.165333pt;}
.ls2f{letter-spacing:0.174933pt;}
.ls3e{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls41{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.412800pt;}
.ls9{letter-spacing:0.456533pt;}
.ls14{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.499915pt;}
.ls18{letter-spacing:0.500267pt;}
.ls2c{letter-spacing:0.517867pt;}
.ls24{letter-spacing:0.517891pt;}
.ls21{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:0.789333pt;}
.ls28{letter-spacing:0.790982pt;}
.ls16{letter-spacing:0.837333pt;}
.ls11{letter-spacing:0.868847pt;}
.ls2{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.033846pt;}
.ls2e{letter-spacing:1.072000pt;}
.ls2b{letter-spacing:1.109333pt;}
.ls27{letter-spacing:1.110548pt;}
.ls1b{letter-spacing:1.157333pt;}
.ls25{letter-spacing:1.416894pt;}
.ls40{letter-spacing:14.672640pt;}
.ls36{letter-spacing:14.698027pt;}
.ls38{letter-spacing:14.719360pt;}
.ls3c{letter-spacing:14.826027pt;}
.ls37{letter-spacing:15.303680pt;}
.ls3a{letter-spacing:15.359360pt;}
.lse{letter-spacing:17.232640pt;}
.lsf{letter-spacing:17.360640pt;}
.ls10{letter-spacing:31.498667pt;}
.ls3d{letter-spacing:40.912640pt;}
.ls39{letter-spacing:57.040640pt;}
.ls34{letter-spacing:86.631040pt;}
.ls33{letter-spacing:100.071040pt;}
.ls31{letter-spacing:106.471040pt;}
.ws24{word-spacing:-53.131520pt;}
.ws27{word-spacing:-53.120000pt;}
.ws28{word-spacing:-38.400640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.437333pt;}
.ws1d{word-spacing:-14.389333pt;}
.ws21{word-spacing:-14.352000pt;}
.wsd{word-spacing:-14.240000pt;}
.wse{word-spacing:-14.117333pt;}
.ws1b{word-spacing:-14.069333pt;}
.ws16{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.866667pt;}
.ws19{word-spacing:-13.824000pt;}
.ws1e{word-spacing:-13.797867pt;}
.ws11{word-spacing:-13.692800pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws29{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.454933pt;}
.wsf{word-spacing:-13.445333pt;}
.ws1f{word-spacing:-13.412267pt;}
.ws20{word-spacing:-13.392533pt;}
.ws13{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.ws1a{word-spacing:-13.120000pt;}
.ws18{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws2a{word-spacing:-12.736000pt;}
.ws14{word-spacing:-12.592000pt;}
.ws15{word-spacing:-12.229333pt;}
.wsb{word-spacing:-11.680000pt;}
.ws25{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.ws23{word-spacing:1.536000pt;}
.ws26{word-spacing:1.664000pt;}
._4d{margin-left:-11.216640pt;}
._1a{margin-left:-8.860160pt;}
._26{margin-left:-7.011840pt;}
._8{margin-left:-5.280000pt;}
._6{margin-left:-3.938133pt;}
._7{margin-left:-2.629973pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.054080pt;}
._5{width:2.213333pt;}
._10{width:3.930880pt;}
._f{width:5.356800pt;}
._c{width:6.648320pt;}
._b{width:7.649280pt;}
._14{width:8.584533pt;}
._d{width:9.508480pt;}
._e{width:10.466347pt;}
._13{width:11.473920pt;}
._4e{width:12.370987pt;}
._15{width:14.342400pt;}
._11{width:15.245440pt;}
._12{width:16.619733pt;}
._31{width:17.742080pt;}
._2d{width:18.645120pt;}
._16{width:19.813760pt;}
._3d{width:20.769920pt;}
._17{width:21.726080pt;}
._4a{width:22.947840pt;}
._39{width:23.957120pt;}
._36{width:25.125760pt;}
._1f{width:27.252693pt;}
._a{width:28.737920pt;}
._9{width:30.299307pt;}
._2c{width:32.017280pt;}
._3{width:33.196800pt;}
._4{width:34.440960pt;}
._35{width:35.423360pt;}
._29{width:36.493440pt;}
._2b{width:37.555840pt;}
._21{width:38.512000pt;}
._22{width:40.530560pt;}
._19{width:41.433600pt;}
._27{width:42.974080pt;}
._20{width:44.408320pt;}
._37{width:49.144320pt;}
._48{width:53.694720pt;}
._28{width:56.572800pt;}
._4f{width:57.616427pt;}
._49{width:59.585920pt;}
._3b{width:61.102720pt;}
._40{width:63.053440pt;}
._45{width:64.753280pt;}
._44{width:66.378027pt;}
._42{width:67.515520pt;}
._4b{width:68.714453pt;}
._33{width:71.127680pt;}
._32{width:73.649920pt;}
._34{width:78.033280pt;}
._24{width:79.626880pt;}
._1e{width:81.258667pt;}
._1d{width:82.848000pt;}
._2f{width:87.089280pt;}
._2e{width:93.463680pt;}
._3e{width:94.819200pt;}
._3f{width:95.722240pt;}
._4c{width:98.093653pt;}
._30{width:99.707520pt;}
._2a{width:104.965120pt;}
._1b{width:106.746027pt;}
._38{width:109.192533pt;}
._41{width:112.826880pt;}
._43{width:117.562880pt;}
._47{width:118.510720pt;}
._3a{width:124.832000pt;}
._3c{width:161.758720pt;}
._1c{width:178.880000pt;}
._25{width:193.356800pt;}
._46{width:225.600640pt;}
._23{width:531.359360pt;}
._18{width:541.558400pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y140{bottom:-28.480000pt;}
.y185{bottom:-16.640000pt;}
.y125{bottom:-15.426667pt;}
.y13f{bottom:-10.880000pt;}
.y13a{bottom:-10.720000pt;}
.y12a{bottom:-3.546667pt;}
.y0{bottom:0.000000pt;}
.y1a1{bottom:0.160000pt;}
.y16e{bottom:0.320000pt;}
.y15e{bottom:0.960000pt;}
.y163{bottom:1.120000pt;}
.y2{bottom:1.280000pt;}
.y29{bottom:5.120000pt;}
.y3c{bottom:5.440000pt;}
.yc9{bottom:5.466667pt;}
.ya7{bottom:5.600000pt;}
.y1be{bottom:5.640000pt;}
.y14b{bottom:5.760000pt;}
.y89{bottom:5.920000pt;}
.y11d{bottom:6.080000pt;}
.y90{bottom:6.240000pt;}
.y8b{bottom:6.266667pt;}
.y9b{bottom:6.280000pt;}
.yf9{bottom:6.394667pt;}
.yae{bottom:6.400000pt;}
.y13e{bottom:6.720000pt;}
.y13c{bottom:6.880000pt;}
.y139{bottom:6.906667pt;}
.y124{bottom:6.973333pt;}
.y7{bottom:7.360000pt;}
.y1ee{bottom:8.160000pt;}
.y136{bottom:8.893333pt;}
.y203{bottom:9.280000pt;}
.y1f6{bottom:9.440000pt;}
.y27{bottom:10.080000pt;}
.y213{bottom:11.200000pt;}
.y129{bottom:11.653333pt;}
.y159{bottom:12.000000pt;}
.y130{bottom:12.413333pt;}
.y132{bottom:12.733333pt;}
.y1bc{bottom:13.920000pt;}
.y22f{bottom:14.080000pt;}
.yb9{bottom:14.240000pt;}
.yc4{bottom:14.266667pt;}
.ya5{bottom:14.400000pt;}
.ye4{bottom:14.426667pt;}
.y1c1{bottom:16.320000pt;}
.y1e9{bottom:16.960000pt;}
.y21c{bottom:17.000000pt;}
.y1ce{bottom:17.120000pt;}
.y1f3{bottom:18.240000pt;}
.y178{bottom:18.720000pt;}
.y15a{bottom:18.880000pt;}
.y1bb{bottom:22.720000pt;}
.y3b{bottom:23.040000pt;}
.yc8{bottom:23.066667pt;}
.ya6{bottom:23.200000pt;}
.ye5{bottom:23.226667pt;}
.y1e1{bottom:23.360000pt;}
.y221{bottom:23.386667pt;}
.y135{bottom:24.573333pt;}
.y1ed{bottom:25.760000pt;}
.y219{bottom:25.800000pt;}
.y201{bottom:26.880000pt;}
.y1f0{bottom:27.040000pt;}
.y26{bottom:27.840000pt;}
.y1b1{bottom:28.640000pt;}
.y210{bottom:28.960000pt;}
.y207{bottom:31.840000pt;}
.y22a{bottom:31.880000pt;}
.y6{bottom:32.000000pt;}
.y22d{bottom:32.040000pt;}
.y1c0{bottom:33.920000pt;}
.y1e5{bottom:34.400000pt;}
.y1e8{bottom:34.560000pt;}
.y215{bottom:34.600000pt;}
.y1ff{bottom:35.360000pt;}
.y21e{bottom:35.520000pt;}
.y1f2{bottom:35.840000pt;}
.y1fc{bottom:36.480000pt;}
.y1c6{bottom:36.640000pt;}
.y205{bottom:40.320000pt;}
.y224{bottom:40.480000pt;}
.y228{bottom:40.520000pt;}
.y20b{bottom:40.640000pt;}
.y12e{bottom:40.733333pt;}
.y3a{bottom:40.800000pt;}
.y232{bottom:40.840000pt;}
.y1e0{bottom:41.440000pt;}
.y220{bottom:41.466667pt;}
.y234{bottom:43.040000pt;}
.y240{bottom:43.360000pt;}
.y218{bottom:43.400000pt;}
.y1ec{bottom:43.520000pt;}
.y200{bottom:44.320000pt;}
.y1ef{bottom:44.480000pt;}
.y1f5{bottom:44.640000pt;}
.y1f8{bottom:45.120000pt;}
.y25{bottom:45.440000pt;}
.y20f{bottom:46.400000pt;}
.y212{bottom:46.560000pt;}
.y206{bottom:49.280000pt;}
.y209{bottom:49.440000pt;}
.y226{bottom:49.600000pt;}
.y22c{bottom:49.640000pt;}
.y229{bottom:49.800000pt;}
.yb{bottom:50.752000pt;}
.y5{bottom:51.520000pt;}
.y235{bottom:52.000000pt;}
.y237{bottom:52.160000pt;}
.y214{bottom:52.200000pt;}
.y1e7{bottom:52.320000pt;}
.y21b{bottom:52.360000pt;}
.y1e4{bottom:52.480000pt;}
.y1f1{bottom:53.440000pt;}
.y1fb{bottom:53.920000pt;}
.y1f9{bottom:54.080000pt;}
.y1fd{bottom:54.240000pt;}
.y20a{bottom:58.240000pt;}
.y39{bottom:58.400000pt;}
.y23b{bottom:58.426667pt;}
.y231{bottom:58.440000pt;}
.y23f{bottom:60.960000pt;}
.y1eb{bottom:61.120000pt;}
.y217{bottom:61.160000pt;}
.y239{bottom:62.080000pt;}
.y202{bottom:62.240000pt;}
.y1f4{bottom:62.280000pt;}
.y24{bottom:62.720000pt;}
.y211{bottom:64.160000pt;}
.y208{bottom:67.040000pt;}
.y225{bottom:67.200000pt;}
.y23d{bottom:67.226667pt;}
.y22b{bottom:67.240000pt;}
.y22e{bottom:67.400000pt;}
.y16b{bottom:69.632000pt;}
.y236{bottom:69.760000pt;}
.y1e6{bottom:69.920000pt;}
.y21a{bottom:69.960000pt;}
.y116{bottom:70.752000pt;}
.y1b0{bottom:71.392000pt;}
.y1fa{bottom:71.840000pt;}
.y12c{bottom:71.933333pt;}
.y4{bottom:72.826667pt;}
.y1da{bottom:75.872000pt;}
.y38{bottom:76.000000pt;}
.y23c{bottom:76.026667pt;}
.y230{bottom:76.040000pt;}
.y250{bottom:76.832000pt;}
.y241{bottom:78.560000pt;}
.y1ea{bottom:78.720000pt;}
.y216{bottom:78.760000pt;}
.y16c{bottom:79.994667pt;}
.y23{bottom:80.320000pt;}
.y121{bottom:80.512000pt;}
.y1e2{bottom:84.360000pt;}
.y86{bottom:85.152000pt;}
.y20d{bottom:86.280000pt;}
.y176{bottom:86.752000pt;}
.y115{bottom:88.352000pt;}
.y1b4{bottom:88.512000pt;}
.y4e{bottom:92.512000pt;}
.y37{bottom:93.626667pt;}
.y1d9{bottom:93.632000pt;}
.y24f{bottom:94.592000pt;}
.yc1{bottom:94.912000pt;}
.yfa{bottom:95.072000pt;}
.y9{bottom:96.506667pt;}
.y22{bottom:97.946667pt;}
.y120{bottom:100.192000pt;}
.yef{bottom:100.474667pt;}
.y85{bottom:102.752000pt;}
.y175{bottom:103.872000pt;}
.y3{bottom:104.986667pt;}
.y1b3{bottom:105.632000pt;}
.y17f{bottom:105.800000pt;}
.y15c{bottom:105.920000pt;}
.y114{bottom:105.952000pt;}
.yed{bottom:107.872000pt;}
.y4d{bottom:110.272000pt;}
.y36{bottom:111.226667pt;}
.y1d8{bottom:111.232000pt;}
.y284{bottom:112.192000pt;}
.y24e{bottom:112.512000pt;}
.yb2{bottom:115.552000pt;}
.y21{bottom:115.706667pt;}
.y8{bottom:116.026667pt;}
.yee{bottom:118.074667pt;}
.y11f{bottom:119.872000pt;}
.y84{bottom:120.352000pt;}
.y174{bottom:120.992000pt;}
.y8e{bottom:121.160000pt;}
.y1b2{bottom:122.752000pt;}
.y113{bottom:123.552000pt;}
.y4c{bottom:127.872000pt;}
.yf8{bottom:128.512000pt;}
.y35{bottom:128.986667pt;}
.y1d7{bottom:129.152000pt;}
.y283{bottom:129.792000pt;}
.y24d{bottom:130.112000pt;}
.y19f{bottom:131.240000pt;}
.y18d{bottom:131.386667pt;}
.y20{bottom:133.626667pt;}
.yc0{bottom:136.186667pt;}
.yb4{bottom:137.154667pt;}
.y83{bottom:137.946667pt;}
.y173{bottom:138.106667pt;}
.y8d{bottom:138.760000pt;}
.y11e{bottom:139.546667pt;}
.y19d{bottom:139.866667pt;}
.y112{bottom:141.146667pt;}
.y21d{bottom:143.066667pt;}
.y4b{bottom:145.466667pt;}
.y34{bottom:146.586667pt;}
.y1d6{bottom:147.066667pt;}
.y282{bottom:147.546667pt;}
.y24c{bottom:148.826667pt;}
.y19e{bottom:148.840000pt;}
.yf7{bottom:149.306667pt;}
.y9f{bottom:149.786667pt;}
.yc7{bottom:149.960000pt;}
.y1f{bottom:151.226667pt;}
.yb3{bottom:154.914667pt;}
.y172{bottom:155.226667pt;}
.y82{bottom:155.546667pt;}
.ybf{bottom:156.826667pt;}
.y1af{bottom:156.986667pt;}
.y111{bottom:158.906667pt;}
.y11c{bottom:159.226667pt;}
.y4a{bottom:163.066667pt;}
.y33{bottom:164.186667pt;}
.y1d5{bottom:164.826667pt;}
.y281{bottom:165.146667pt;}
.y24b{bottom:166.906667pt;}
.y9e{bottom:167.546667pt;}
.yc6{bottom:167.560000pt;}
.y1e{bottom:168.506667pt;}
.yf6{bottom:169.946667pt;}
.yda{bottom:170.586667pt;}
.y171{bottom:172.346667pt;}
.y81{bottom:173.306667pt;}
.y1ae{bottom:174.106667pt;}
.y110{bottom:176.506667pt;}
.y11b{bottom:178.746667pt;}
.y49{bottom:180.666667pt;}
.y32{bottom:181.786667pt;}
.y1d4{bottom:182.426667pt;}
.y280{bottom:182.746667pt;}
.y24a{bottom:184.826667pt;}
.y1d{bottom:186.106667pt;}
.yd9{bottom:188.186667pt;}
.y170{bottom:189.626667pt;}
.yf5{bottom:190.586667pt;}
.y80{bottom:190.906667pt;}
.y1ad{bottom:191.226667pt;}
.ybe{bottom:193.626667pt;}
.y10f{bottom:194.106667pt;}
.y48{bottom:198.426667pt;}
.y31{bottom:199.386667pt;}
.y1d3{bottom:200.186667pt;}
.y27f{bottom:200.346667pt;}
.y249{bottom:202.746667pt;}
.y1c{bottom:203.866667pt;}
.y16f{bottom:206.746667pt;}
.y7f{bottom:208.506667pt;}
.yf4{bottom:211.226667pt;}
.y10e{bottom:211.706667pt;}
.ybd{bottom:214.266667pt;}
.y47{bottom:216.026667pt;}
.y30{bottom:217.146667pt;}
.y1d2{bottom:217.786667pt;}
.y27e{bottom:217.946667pt;}
.y11a{bottom:218.106667pt;}
.y248{bottom:220.506667pt;}
.y1b{bottom:221.466667pt;}
.y16d{bottom:223.866667pt;}
.y1ac{bottom:225.626667pt;}
.y20c{bottom:225.946667pt;}
.y7e{bottom:226.106667pt;}
.y10d{bottom:229.306667pt;}
.yf3{bottom:231.866667pt;}
.y46{bottom:233.626667pt;}
.y2f{bottom:234.746667pt;}
.ybc{bottom:234.906667pt;}
.y27d{bottom:235.706667pt;}
.y119{bottom:237.786667pt;}
.y247{bottom:238.266667pt;}
.y1a{bottom:239.066667pt;}
.y15b{bottom:241.026667pt;}
.y1ab{bottom:242.786667pt;}
.y7d{bottom:243.746667pt;}
.y10c{bottom:247.106667pt;}
.y45{bottom:251.266667pt;}
.y2e{bottom:252.346667pt;}
.yf2{bottom:252.546667pt;}
.y27c{bottom:253.346667pt;}
.y1d1{bottom:255.266667pt;}
.ybb{bottom:255.586667pt;}
.y246{bottom:256.066667pt;}
.y19{bottom:256.986667pt;}
.y118{bottom:257.506667pt;}
.y16a{bottom:258.146667pt;}
.y1aa{bottom:259.906667pt;}
.y7c{bottom:261.506667pt;}
.y10b{bottom:264.706667pt;}
.y44{bottom:268.866667pt;}
.y2d{bottom:269.946667pt;}
.y27b{bottom:270.946667pt;}
.yf1{bottom:273.346667pt;}
.y245{bottom:273.826667pt;}
.y18{bottom:274.586667pt;}
.y169{bottom:275.266667pt;}
.yba{bottom:276.386667pt;}
.y1d0{bottom:276.866667pt;}
.y1a9{bottom:277.026667pt;}
.y117{bottom:277.186667pt;}
.y7b{bottom:279.106667pt;}
.y10a{bottom:282.306667pt;}
.y43{bottom:286.626667pt;}
.y2c{bottom:287.546667pt;}
.y27a{bottom:288.546667pt;}
.y244{bottom:291.426667pt;}
.y17{bottom:292.346667pt;}
.y168{bottom:292.386667pt;}
.yf0{bottom:293.986667pt;}
.y1a8{bottom:294.146667pt;}
.y7a{bottom:296.706667pt;}
.yb8{bottom:297.026667pt;}
.y109{bottom:299.906667pt;}
.y42{bottom:304.226667pt;}
.y2b{bottom:305.306667pt;}
.y279{bottom:306.146667pt;}
.y243{bottom:308.866667pt;}
.y167{bottom:309.506667pt;}
.y16{bottom:309.946667pt;}
.y1a7{bottom:311.266667pt;}
.y79{bottom:314.306667pt;}
.yec{bottom:314.626667pt;}
.y1cd{bottom:316.066667pt;}
.y108{bottom:317.826667pt;}
.y41{bottom:321.826667pt;}
.y2a{bottom:322.906667pt;}
.y20e{bottom:323.586667pt;}
.y278{bottom:323.906667pt;}
.y166{bottom:326.626667pt;}
.y242{bottom:326.786667pt;}
.y15{bottom:327.546667pt;}
.y1a6{bottom:328.386667pt;}
.y78{bottom:331.906667pt;}
.yb7{bottom:333.666667pt;}
.yd8{bottom:335.266667pt;}
.y107{bottom:335.586667pt;}
.y1cf{bottom:338.626667pt;}
.y40{bottom:339.426667pt;}
.y277{bottom:341.506667pt;}
.y23e{bottom:342.626667pt;}
.y165{bottom:343.746667pt;}
.y14{bottom:345.186667pt;}
.y1a5{bottom:345.506667pt;}
.y77{bottom:349.666667pt;}
.y106{bottom:353.186667pt;}
.yb6{bottom:354.306667pt;}
.yeb{bottom:355.906667pt;}
.y3f{bottom:357.026667pt;}
.y276{bottom:359.106667pt;}
.y164{bottom:360.866667pt;}
.y1cc{bottom:361.026667pt;}
.y1a4{bottom:362.626667pt;}
.y76{bottom:367.266667pt;}
.y105{bottom:370.786667pt;}
.y3e{bottom:374.466667pt;}
.yb5{bottom:375.106667pt;}
.yea{bottom:376.546667pt;}
.y275{bottom:376.706667pt;}
.y162{bottom:377.986667pt;}
.y1a3{bottom:379.746667pt;}
.y1cb{bottom:382.626667pt;}
.y75{bottom:384.866667pt;}
.y104{bottom:388.066667pt;}
.y3d{bottom:392.386667pt;}
.y274{bottom:394.306667pt;}
.y161{bottom:395.266667pt;}
.yb1{bottom:395.746667pt;}
.y1a2{bottom:396.866667pt;}
.ye9{bottom:397.346667pt;}
.y74{bottom:402.466667pt;}
.y13{bottom:409.186667pt;}
.y204{bottom:410.466667pt;}
.y273{bottom:411.746667pt;}
.y160{bottom:412.386667pt;}
.y103{bottom:413.986667pt;}
.y1a0{bottom:414.146667pt;}
.y9d{bottom:416.386667pt;}
.ye8{bottom:417.986667pt;}
.y73{bottom:420.066667pt;}
.y1ca{bottom:421.986667pt;}
.y272{bottom:429.346667pt;}
.y15f{bottom:429.506667pt;}
.y18c{bottom:431.266667pt;}
.y102{bottom:431.426667pt;}
.yb0{bottom:437.026667pt;}
.y72{bottom:437.826667pt;}
.ye7{bottom:438.626667pt;}
.y23a{bottom:440.706667pt;}
.y15d{bottom:446.626667pt;}
.y271{bottom:447.426667pt;}
.y19c{bottom:448.386667pt;}
.y71{bottom:455.426667pt;}
.y122{bottom:457.026667pt;}
.y101{bottom:457.346667pt;}
.yaf{bottom:457.666667pt;}
.ye6{bottom:459.266667pt;}
.y1c9{bottom:461.186667pt;}
.y158{bottom:464.386667pt;}
.y19b{bottom:465.506667pt;}
.y70{bottom:473.026667pt;}
.y100{bottom:474.946667pt;}
.yad{bottom:478.306667pt;}
.ye3{bottom:479.906667pt;}
.y19a{bottom:482.626667pt;}
.y270{bottom:483.266667pt;}
.y6f{bottom:490.626667pt;}
.yff{bottom:492.573333pt;}
.yac{bottom:499.133333pt;}
.y199{bottom:499.773333pt;}
.y1c5{bottom:500.573333pt;}
.y26f{bottom:500.893333pt;}
.y1fe{bottom:503.293333pt;}
.y157{bottom:504.573333pt;}
.y6e{bottom:508.253333pt;}
.yfe{bottom:510.173333pt;}
.ye2{bottom:516.733333pt;}
.y198{bottom:516.893333pt;}
.y26e{bottom:518.493333pt;}
.yab{bottom:519.773333pt;}
.y156{bottom:522.173333pt;}
.y6d{bottom:526.013333pt;}
.yfd{bottom:527.613333pt;}
.y238{bottom:533.693333pt;}
.y197{bottom:534.013333pt;}
.y26d{bottom:536.093333pt;}
.ye1{bottom:537.373333pt;}
.y1c8{bottom:539.773333pt;}
.y155{bottom:540.093333pt;}
.yaa{bottom:540.413333pt;}
.y6c{bottom:543.613333pt;}
.y196{bottom:551.133333pt;}
.yfc{bottom:553.213333pt;}
.y26c{bottom:553.693333pt;}
.y154{bottom:557.853333pt;}
.ye0{bottom:558.013333pt;}
.ya9{bottom:561.053333pt;}
.y6b{bottom:561.213333pt;}
.y1c7{bottom:562.173333pt;}
.y195{bottom:568.253333pt;}
.y26b{bottom:571.613333pt;}
.y153{bottom:575.133333pt;}
.y134{bottom:575.520000pt;}
.ydf{bottom:578.653333pt;}
.y6a{bottom:578.813333pt;}
.ya8{bottom:581.693333pt;}
.y1c4{bottom:584.733333pt;}
.y194{bottom:585.373333pt;}
.y1f7{bottom:586.173333pt;}
.y26a{bottom:589.373333pt;}
.y69{bottom:596.413333pt;}
.yde{bottom:599.293333pt;}
.ya4{bottom:602.333333pt;}
.y193{bottom:602.493333pt;}
.y152{bottom:605.853333pt;}
.y269{bottom:606.973333pt;}
.y68{bottom:614.173333pt;}
.y133{bottom:615.453333pt;}
.y233{bottom:616.573333pt;}
.y131{bottom:616.960000pt;}
.y192{bottom:619.773333pt;}
.ydd{bottom:620.093333pt;}
.y1c3{bottom:623.933333pt;}
.y151{bottom:624.253333pt;}
.y268{bottom:624.573333pt;}
.y67{bottom:631.773333pt;}
.y191{bottom:636.893333pt;}
.ya3{bottom:639.133333pt;}
.ydc{bottom:640.733333pt;}
.y267{bottom:642.333333pt;}
.y150{bottom:643.133333pt;}
.y66{bottom:649.373333pt;}
.y190{bottom:654.013333pt;}
.ya2{bottom:659.773333pt;}
.y266{bottom:659.933333pt;}
.ydb{bottom:661.373333pt;}
.y14f{bottom:661.533333pt;}
.y1c2{bottom:663.293333pt;}
.y12f{bottom:666.240000pt;}
.y65{bottom:666.973333pt;}
.y18f{bottom:671.133333pt;}
.y265{bottom:677.693333pt;}
.y12b{bottom:678.720000pt;}
.y14e{bottom:679.933333pt;}
.ya1{bottom:680.413333pt;}
.yd7{bottom:682.013333pt;}
.y64{bottom:684.573333pt;}
.y18e{bottom:688.253333pt;}
.y264{bottom:695.453333pt;}
.y14d{bottom:698.173333pt;}
.ya0{bottom:701.213333pt;}
.y63{bottom:702.333333pt;}
.y1bf{bottom:702.493333pt;}
.yc5{bottom:702.653333pt;}
.y17e{bottom:705.373333pt;}
.y263{bottom:713.373333pt;}
.y227{bottom:714.653333pt;}
.y14c{bottom:716.413333pt;}
.y62{bottom:719.933333pt;}
.y9c{bottom:721.853333pt;}
.y18b{bottom:722.493333pt;}
.y123{bottom:722.560000pt;}
.yd6{bottom:723.293333pt;}
.y262{bottom:731.933333pt;}
.y14a{bottom:734.173333pt;}
.y12d{bottom:735.293333pt;}
.y61{bottom:737.533333pt;}
.y18a{bottom:739.613333pt;}
.y1bd{bottom:741.693333pt;}
.y8c{bottom:742.493333pt;}
.yd5{bottom:744.093333pt;}
.y28{bottom:748.933333pt;}
.y261{bottom:749.573333pt;}
.y149{bottom:752.453333pt;}
.y60{bottom:755.173333pt;}
.y189{bottom:756.773333pt;}
.y128{bottom:759.520000pt;}
.y9a{bottom:763.173333pt;}
.y1ba{bottom:763.493333pt;}
.yd4{bottom:764.773333pt;}
.y260{bottom:767.173333pt;}
.y1e3{bottom:770.533333pt;}
.y148{bottom:770.853333pt;}
.y5f{bottom:772.773333pt;}
.y188{bottom:773.893333pt;}
.y12{bottom:776.773333pt;}
.y99{bottom:783.813333pt;}
.yd3{bottom:785.413333pt;}
.y25f{bottom:785.893333pt;}
.y147{bottom:789.093333pt;}
.y5e{bottom:790.533333pt;}
.y187{bottom:791.013333pt;}
.y11{bottom:799.013333pt;}
.y25e{bottom:803.973333pt;}
.y98{bottom:804.453333pt;}
.yd2{bottom:806.053333pt;}
.y1b9{bottom:806.853333pt;}
.y223{bottom:807.493333pt;}
.y5d{bottom:808.133333pt;}
.y146{bottom:812.613333pt;}
.y10{bottom:816.613333pt;}
.y127{bottom:818.053333pt;}
.y25d{bottom:821.733333pt;}
.y1b8{bottom:824.773333pt;}
.y97{bottom:825.253333pt;}
.y186{bottom:825.413333pt;}
.y5c{bottom:825.733333pt;}
.yd1{bottom:826.693333pt;}
.yf{bottom:829.893333pt;}
.y145{bottom:830.213333pt;}
.y25c{bottom:839.333333pt;}
.y184{bottom:842.533333pt;}
.y1b7{bottom:842.693333pt;}
.y5b{bottom:843.333333pt;}
.y96{bottom:845.893333pt;}
.yd0{bottom:847.333333pt;}
.y144{bottom:848.133333pt;}
.ye{bottom:848.933333pt;}
.y25b{bottom:856.933333pt;}
.y183{bottom:859.653333pt;}
.y1b6{bottom:860.453333pt;}
.y5a{bottom:860.933333pt;}
.y126{bottom:864.133333pt;}
.y143{bottom:865.733333pt;}
.y95{bottom:866.533333pt;}
.ycf{bottom:868.133333pt;}
.yd{bottom:869.573333pt;}
.y25a{bottom:875.493333pt;}
.y182{bottom:876.773333pt;}
.y1b5{bottom:878.053333pt;}
.y59{bottom:878.693333pt;}
.y142{bottom:883.013333pt;}
.y94{bottom:887.173333pt;}
.yce{bottom:888.773333pt;}
.y259{bottom:893.413333pt;}
.y181{bottom:893.893333pt;}
.y58{bottom:896.293333pt;}
.yc{bottom:897.733333pt;}
.y222{bottom:900.453333pt;}
.y93{bottom:907.813333pt;}
.ycd{bottom:909.413333pt;}
.y180{bottom:911.013333pt;}
.y258{bottom:911.173333pt;}
.y57{bottom:913.893333pt;}
.ya{bottom:921.093333pt;}
.y17d{bottom:928.133333pt;}
.y92{bottom:928.453333pt;}
.y257{bottom:928.773333pt;}
.ycc{bottom:930.053333pt;}
.y1df{bottom:930.213333pt;}
.y56{bottom:931.493333pt;}
.y141{bottom:933.573333pt;}
.y1{bottom:935.173333pt;}
.y17c{bottom:945.253333pt;}
.y256{bottom:947.493333pt;}
.y1de{bottom:947.813333pt;}
.y55{bottom:949.093333pt;}
.y91{bottom:949.253333pt;}
.ycb{bottom:950.693333pt;}
.y13d{bottom:953.253333pt;}
.y17b{bottom:962.373333pt;}
.y255{bottom:965.573333pt;}
.y1dd{bottom:965.893333pt;}
.y54{bottom:966.853333pt;}
.y8f{bottom:969.893333pt;}
.yca{bottom:971.333333pt;}
.y13b{bottom:972.773333pt;}
.y17a{bottom:979.493333pt;}
.y254{bottom:983.333333pt;}
.y1dc{bottom:983.973333pt;}
.y53{bottom:984.133333pt;}
.yfb{bottom:984.453333pt;}
.y8a{bottom:990.533333pt;}
.yc3{bottom:992.133333pt;}
.y138{bottom:992.453333pt;}
.y21f{bottom:992.613333pt;}
.y179{bottom:996.640000pt;}
.y253{bottom:1000.960000pt;}
.y1db{bottom:1001.920000pt;}
.y52{bottom:1002.080000pt;}
.y88{bottom:1011.200000pt;}
.y137{bottom:1012.160000pt;}
.y177{bottom:1014.560000pt;}
.y252{bottom:1018.560000pt;}
.y51{bottom:1019.680000pt;}
.yc2{bottom:1028.800000pt;}
.y251{bottom:1036.480000pt;}
.y87{bottom:1036.960000pt;}
.y50{bottom:1037.280000pt;}
.y4f{bottom:1062.720000pt;}
.h3b{height:12.320000pt;}
.h35{height:12.480000pt;}
.h32{height:13.120000pt;}
.h38{height:13.152000pt;}
.h33{height:13.280000pt;}
.h26{height:16.800000pt;}
.hf{height:17.600000pt;}
.h42{height:17.632000pt;}
.h2e{height:17.760000pt;}
.h3d{height:17.792000pt;}
.h2f{height:18.240000pt;}
.h2d{height:18.272000pt;}
.h2c{height:18.400000pt;}
.h40{height:18.560000pt;}
.h24{height:18.880000pt;}
.h22{height:19.040000pt;}
.h23{height:19.072000pt;}
.h13{height:19.200000pt;}
.h14{height:19.232000pt;}
.h25{height:19.360000pt;}
.h27{height:23.680000pt;}
.h36{height:31.200000pt;}
.h30{height:31.392000pt;}
.hb{height:33.574375pt;}
.h29{height:34.880000pt;}
.h2a{height:35.040000pt;}
.h1a{height:35.200000pt;}
.h1b{height:35.232000pt;}
.h18{height:35.360000pt;}
.h1e{height:35.392000pt;}
.h11{height:37.090625pt;}
.h16{height:37.479688pt;}
.h41{height:40.960000pt;}
.h4b{height:43.782500pt;}
.h46{height:44.768125pt;}
.he{height:48.375000pt;}
.h9{height:52.134375pt;}
.hd{height:53.535000pt;}
.h43{height:53.920000pt;}
.h50{height:53.952000pt;}
.h53{height:54.598989pt;}
.h21{height:55.298750pt;}
.h3e{height:56.992000pt;}
.h2b{height:57.760000pt;}
.h5{height:57.787500pt;}
.h20{height:58.210625pt;}
.h12{height:58.563750pt;}
.ha{height:59.340000pt;}
.h7{height:60.057813pt;}
.h6{height:62.812500pt;}
.h3c{height:63.840000pt;}
.h3{height:65.531250pt;}
.h49{height:78.080000pt;}
.h4f{height:78.240000pt;}
.h47{height:78.272000pt;}
.h3f{height:80.160000pt;}
.h4d{height:82.080000pt;}
.h8{height:85.785000pt;}
.h51{height:88.160000pt;}
.h4a{height:88.192000pt;}
.h4{height:93.387187pt;}
.h52{height:93.440000pt;}
.h45{height:93.600000pt;}
.h4e{height:93.632000pt;}
.h48{height:97.440000pt;}
.h28{height:121.760000pt;}
.h2{height:139.226667pt;}
.h34{height:166.720000pt;}
.h44{height:175.866667pt;}
.h4c{height:179.706667pt;}
.h37{height:218.106667pt;}
.h31{height:218.720000pt;}
.h1f{height:225.946667pt;}
.h15{height:267.266667pt;}
.h39{height:269.466667pt;}
.h3a{height:286.586667pt;}
.h19{height:299.386667pt;}
.h17{height:324.666667pt;}
.h1c{height:324.706667pt;}
.h10{height:335.066667pt;}
.hc{height:357.346667pt;}
.h1d{height:365.946667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w28{width:33.152000pt;}
.w8{width:33.472000pt;}
.w20{width:41.792000pt;}
.w27{width:43.072000pt;}
.w11{width:45.120000pt;}
.w1f{width:53.600000pt;}
.w24{width:60.320000pt;}
.w21{width:63.392000pt;}
.w26{width:68.800000pt;}
.w13{width:76.160000pt;}
.w16{width:77.440000pt;}
.w18{width:77.760000pt;}
.w1c{width:79.232000pt;}
.w9{width:79.840000pt;}
.w25{width:81.792000pt;}
.w14{width:85.632000pt;}
.w1e{width:87.840000pt;}
.w1a{width:97.952000pt;}
.w12{width:98.080000pt;}
.w1d{width:100.480000pt;}
.wc{width:102.240000pt;}
.w2{width:113.472000pt;}
.w17{width:139.066667pt;}
.w19{width:139.386667pt;}
.w4{width:139.706667pt;}
.wd{width:142.106667pt;}
.w29{width:151.680000pt;}
.w22{width:155.866667pt;}
.w2c{width:158.746667pt;}
.w2b{width:168.666667pt;}
.w2a{width:173.626667pt;}
.w10{width:183.200000pt;}
.wf{width:186.080000pt;}
.w23{width:211.226667pt;}
.w1b{width:220.986667pt;}
.wa{width:233.946667pt;}
.w15{width:248.546667pt;}
.w6{width:270.946667pt;}
.we{width:294.106667pt;}
.wb{width:351.133333pt;}
.w7{width:420.893333pt;}
.w3{width:444.253333pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x48{left:0.960000pt;}
.x29{left:2.013333pt;}
.xf{left:4.800000pt;}
.x6{left:7.200000pt;}
.x2f{left:9.146667pt;}
.x19{left:13.120000pt;}
.x23{left:20.386667pt;}
.x46{left:23.200000pt;}
.x1d{left:24.346667pt;}
.x1c{left:26.426667pt;}
.x16{left:28.000000pt;}
.x36{left:28.960000pt;}
.x4{left:30.240000pt;}
.x37{left:32.640000pt;}
.x3d{left:33.920000pt;}
.x3e{left:37.280000pt;}
.x1e{left:38.586667pt;}
.x1f{left:42.266667pt;}
.x18{left:44.026667pt;}
.x1{left:48.000000pt;}
.xb{left:49.760000pt;}
.x1b{left:53.146667pt;}
.x13{left:55.519988pt;}
.x44{left:57.626667pt;}
.x38{left:59.360000pt;}
.x33{left:60.640000pt;}
.x41{left:63.199988pt;}
.x34{left:64.160000pt;}
.x1a{left:66.586667pt;}
.x20{left:68.026667pt;}
.x39{left:69.440000pt;}
.xa{left:71.999988pt;}
.x47{left:77.946667pt;}
.x45{left:80.986667pt;}
.xe{left:82.272000pt;}
.x53{left:85.152000pt;}
.x3f{left:87.066667pt;}
.x7{left:90.920000pt;}
.x21{left:92.032000pt;}
.x24{left:93.213333pt;}
.x56{left:96.031988pt;}
.x2{left:103.066667pt;}
.x3a{left:104.346667pt;}
.x3b{left:107.866667pt;}
.x40{left:115.386667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x35{left:121.946667pt;}
.x49{left:150.106667pt;}
.x3{left:161.466667pt;}
.x3c{left:172.346667pt;}
.x30{left:192.026655pt;}
.xd{left:213.946655pt;}
.x2e{left:220.800000pt;}
.x31{left:229.946667pt;}
.x2d{left:238.306655pt;}
.x14{left:247.906655pt;}
.x11{left:261.826655pt;}
.x15{left:273.986667pt;}
.x42{left:288.066655pt;}
.x22{left:300.000000pt;}
.x2b{left:301.120000pt;}
.x27{left:304.066655pt;}
.x32{left:315.586667pt;}
.x26{left:317.826655pt;}
.xc{left:323.426667pt;}
.x25{left:342.626655pt;}
.x2c{left:343.520000pt;}
.x43{left:366.466667pt;}
.x4a{left:373.186667pt;}
.x17{left:377.026667pt;}
.x10{left:396.066667pt;}
.x12{left:409.053322pt;}
.x54{left:414.653333pt;}
.x4b{left:454.333333pt;}
.x4f{left:486.493333pt;}
.x28{left:519.360000pt;}
.x2a{left:531.933322pt;}
.x50{left:548.733333pt;}
.x4c{left:556.933333pt;}
.x55{left:585.253333pt;}
.x9{left:605.733333pt;}
.x51{left:632.613333pt;}
.x4d{left:646.693333pt;}
.x4e{left:702.213333pt;}
.x52{left:703.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; }
  