
    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_31998d6bf66b2d94ab995810.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_e789c75111ed6597b2966c45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_67b5ed5598b4d4e7c1d1dac7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934082;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_5c711fc81405604a185a5000.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_3c24d8b080a10b13142222f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_81beac8c9b36dd651d663407.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a24e53242cf8f1995d96bc8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_83d474595bd20130d477e73e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.072266;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_750416a17aa3a07cc36f55f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_b08c9d49e9c535713c1ed6f3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5b5c62fea0ff005727b0f511.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fcf17fca425fd4bef97d3ef8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_94d0722732249c9b6df3026f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.666000px;}
.ls33{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.496200px;}
.lse{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.303600px;}
.ls20{letter-spacing:-0.291600px;}
.ls46{letter-spacing:-0.269400px;}
.ls47{letter-spacing:-0.223800px;}
.ls34{letter-spacing:-0.126600px;}
.lsf{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.131040px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.223800px;}
.ls2e{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.264000px;}
.ls48{letter-spacing:0.269400px;}
.ls14{letter-spacing:0.276480px;}
.ls21{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.316800px;}
.ls3{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.428400px;}
.ls25{letter-spacing:0.439920px;}
.ls5{letter-spacing:0.493920px;}
.ls3b{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.542400px;}
.ls31{letter-spacing:0.590400px;}
.ls2f{letter-spacing:0.630000px;}
.ls1e{letter-spacing:0.828000px;}
.ls16{letter-spacing:1.620000px;}
.ls27{letter-spacing:2.316000px;}
.ls26{letter-spacing:2.340000px;}
.ls3c{letter-spacing:3.060000px;}
.ls3a{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.500000px;}
.ls6{letter-spacing:5.940000px;}
.ls18{letter-spacing:7.380000px;}
.ls23{letter-spacing:8.586720px;}
.ls28{letter-spacing:8.706720px;}
.ls3f{letter-spacing:8.820000px;}
.ls2d{letter-spacing:9.540000px;}
.ls2c{letter-spacing:10.260000px;}
.ls3e{letter-spacing:12.420000px;}
.ls1d{letter-spacing:13.860000px;}
.ls22{letter-spacing:14.580000px;}
.ls3d{letter-spacing:15.066720px;}
.lsa{letter-spacing:16.020000px;}
.ls7{letter-spacing:17.460000px;}
.ls19{letter-spacing:18.900000px;}
.ls17{letter-spacing:22.500000px;}
.ls29{letter-spacing:23.220000px;}
.ls36{letter-spacing:24.660000px;}
.ls38{letter-spacing:26.820000px;}
.ls39{letter-spacing:27.000000px;}
.ls30{letter-spacing:31.860000px;}
.ls4{letter-spacing:32.760000px;}
.ls1b{letter-spacing:34.740000px;}
.ls24{letter-spacing:41.220000px;}
.ls35{letter-spacing:44.562720px;}
.ls2b{letter-spacing:44.796000px;}
.ls1a{letter-spacing:46.260000px;}
.ls32{letter-spacing:52.920000px;}
.ls40{letter-spacing:67.860000px;}
.ls42{letter-spacing:68.580000px;}
.ls41{letter-spacing:68.700000px;}
.ls43{letter-spacing:68.760000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.280640px;}
.ws12{word-spacing:-15.482400px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199920px;}
.ws14{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.813400px;}
.wse{word-spacing:-14.648400px;}
.ws3{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.274000px;}
.ws13{word-spacing:-13.500000px;}
.ws16{word-spacing:-12.690000px;}
.ws1b{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.283800px;}
.ws17{word-spacing:-12.060000px;}
.ws1c{word-spacing:-11.790600px;}
.ws19{word-spacing:-11.700000px;}
.wsb{word-spacing:-11.625840px;}
.ws18{word-spacing:-11.563800px;}
.ws8{word-spacing:-10.440000px;}
.wsd{word-spacing:-10.064160px;}
.wsc{word-spacing:-9.760560px;}
.ws9{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._29{margin-left:-4.082400px;}
._c{margin-left:-2.785680px;}
._0{margin-left:-1.388160px;}
._1{width:1.050480px;}
._2{width:2.492160px;}
._b{width:4.503600px;}
._3{width:5.762880px;}
._4{width:6.973920px;}
._14{width:8.092080px;}
._a{width:9.138960px;}
._18{width:11.131920px;}
._7{width:12.319200px;}
._8{width:13.446720px;}
._10{width:14.497200px;}
._f{width:15.563520px;}
._e{width:16.704000px;}
._11{width:18.457920px;}
._16{width:19.661040px;}
._17{width:20.881440px;}
._9{width:22.425120px;}
._d{width:24.360960px;}
._22{width:25.623600px;}
._25{width:26.828880px;}
._19{width:28.027440px;}
._1a{width:29.093760px;}
._2e{width:30.130800px;}
._6{width:31.365120px;}
._12{width:32.865120px;}
._13{width:34.577280px;}
._1e{width:36.071040px;}
._5{width:37.413120px;}
._30{width:38.604960px;}
._24{width:39.919680px;}
._20{width:41.533200px;}
._28{width:42.668640px;}
._27{width:43.923600px;}
._33{width:44.938080px;}
._2c{width:46.254240px;}
._23{width:47.329920px;}
._2f{width:48.490560px;}
._1c{width:49.541040px;}
._31{width:50.701680px;}
._21{width:51.811920px;}
._36{width:53.066880px;}
._2d{width:54.262080px;}
._1f{width:55.576800px;}
._32{width:58.530240px;}
._2a{width:60.536880px;}
._34{width:62.449200px;}
._37{width:63.904800px;}
._2b{width:66.239280px;}
._39{width:68.259600px;}
._35{width:71.152560px;}
._1d{width:72.211680px;}
._1b{width:73.445040px;}
._26{width:75.024000px;}
._15{width:78.464880px;}
._38{width:89.877360px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsb{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.980000px;}
.y284{bottom:2.520000px;}
.y14c{bottom:2.880000px;}
.y14b{bottom:3.060000px;}
.y18c{bottom:3.105000px;}
.y148{bottom:3.240000px;}
.y77{bottom:3.960000px;}
.y7a{bottom:4.320000px;}
.y79{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y2{bottom:7.200000px;}
.y181{bottom:8.460000px;}
.y1ec{bottom:10.620000px;}
.y149{bottom:10.980000px;}
.y28e{bottom:11.880000px;}
.y3{bottom:12.240000px;}
.y287{bottom:16.380000px;}
.y1e6{bottom:18.360000px;}
.y17a{bottom:18.540000px;}
.y147{bottom:18.900000px;}
.y1e5{bottom:26.100000px;}
.y152{bottom:28.440000px;}
.y286{bottom:30.240000px;}
.y9{bottom:32.940000px;}
.y1e3{bottom:33.840000px;}
.y179{bottom:34.020000px;}
.y1e2{bottom:34.200000px;}
.y15c{bottom:36.180000px;}
.y185{bottom:36.405000px;}
.y1e4{bottom:41.760000px;}
.y1df{bottom:42.120000px;}
.y151{bottom:43.920000px;}
.y28a{bottom:43.950000px;}
.y7{bottom:48.600000px;}
.y178{bottom:49.500000px;}
.y1e1{bottom:49.860000px;}
.y15b{bottom:51.660000px;}
.y16a{bottom:51.840000px;}
.y184{bottom:51.885000px;}
.y1de{bottom:57.600000px;}
.y285{bottom:57.780000px;}
.y150{bottom:59.400000px;}
.y177{bottom:64.980000px;}
.y1e0{bottom:65.340000px;}
.y15a{bottom:67.320000px;}
.y183{bottom:67.365000px;}
.y6{bottom:72.900000px;}
.y14f{bottom:75.060000px;}
.y176{bottom:80.640000px;}
.y290{bottom:86.040000px;}
.y28f{bottom:87.840000px;}
.y1dc{bottom:88.380000px;}
.y28d{bottom:89.280000px;}
.y11c{bottom:90.000000px;}
.y222{bottom:91.260000px;}
.y250{bottom:93.420000px;}
.yb6{bottom:94.320000px;}
.y175{bottom:96.120000px;}
.y75{bottom:99.000000px;}
.y55{bottom:100.800000px;}
.y1ba{bottom:101.340000px;}
.y170{bottom:101.880000px;}
.ye6{bottom:102.420000px;}
.y127{bottom:102.780000px;}
.y169{bottom:104.040000px;}
.y1db{bottom:105.660000px;}
.y11b{bottom:107.100000px;}
.y21c{bottom:108.540000px;}
.y24f{bottom:110.700000px;}
.yb5{bottom:111.420000px;}
.y174{bottom:111.600000px;}
.y54{bottom:112.860000px;}
.y74{bottom:116.280000px;}
.y1b9{bottom:118.620000px;}
.ye5{bottom:119.700000px;}
.y126{bottom:120.060000px;}
.y16f{bottom:120.420000px;}
.y1da{bottom:122.940000px;}
.y28c{bottom:123.120000px;}
.y11a{bottom:124.380000px;}
.y53{bottom:124.920000px;}
.y21b{bottom:125.820000px;}
.y24e{bottom:127.980000px;}
.yb4{bottom:128.700000px;}
.y28b{bottom:131.940000px;}
.y73{bottom:133.560000px;}
.y26c{bottom:135.540000px;}
.y1b8{bottom:135.900000px;}
.y16e{bottom:136.620000px;}
.y52{bottom:136.980000px;}
.y125{bottom:138.420000px;}
.y1d9{bottom:140.220000px;}
.y119{bottom:141.660000px;}
.y221{bottom:143.100000px;}
.y21a{bottom:144.180000px;}
.y24d{bottom:145.260000px;}
.yb3{bottom:145.980000px;}
.y51{bottom:149.220000px;}
.y26b{bottom:152.640000px;}
.y16d{bottom:152.820000px;}
.y1b7{bottom:153.180000px;}
.ye4{bottom:154.260000px;}
.y72{bottom:155.160000px;}
.y124{bottom:155.700000px;}
.y1d8{bottom:157.500000px;}
.y118{bottom:158.940000px;}
.y220{bottom:160.200000px;}
.y50{bottom:161.280000px;}
.y24c{bottom:162.540000px;}
.yb2{bottom:163.260000px;}
.y16c{bottom:169.200000px;}
.y26a{bottom:169.920000px;}
.y1b6{bottom:170.460000px;}
.ye3{bottom:171.540000px;}
.y4f{bottom:173.340000px;}
.y123{bottom:174.060000px;}
.y1d7{bottom:174.780000px;}
.y117{bottom:176.220000px;}
.y71{bottom:176.940000px;}
.y21f{bottom:177.480000px;}
.y219{bottom:178.560000px;}
.y24b{bottom:179.640000px;}
.yb1{bottom:180.540000px;}
.y4e{bottom:185.430000px;}
.y269{bottom:187.230000px;}
.y1b5{bottom:187.590000px;}
.ye2{bottom:188.670000px;}
.y122{bottom:191.370000px;}
.y1d6{bottom:191.910000px;}
.y116{bottom:193.530000px;}
.y70{bottom:194.250000px;}
.y21e{bottom:194.790000px;}
.y241{bottom:195.690000px;}
.y218{bottom:195.870000px;}
.y24a{bottom:196.950000px;}
.y4d{bottom:197.490000px;}
.yb0{bottom:197.670000px;}
.y289{bottom:201.270000px;}
.y16b{bottom:201.810000px;}
.y268{bottom:204.510000px;}
.y1b4{bottom:204.870000px;}
.ye1{bottom:205.950000px;}
.y1d5{bottom:209.190000px;}
.y4c{bottom:209.550000px;}
.y115{bottom:210.630000px;}
.y6f{bottom:211.530000px;}
.y21d{bottom:212.070000px;}
.y240{bottom:212.790000px;}
.y217{bottom:213.150000px;}
.y249{bottom:214.230000px;}
.yaf{bottom:214.950000px;}
.y288{bottom:215.130000px;}
.y163{bottom:218.010000px;}
.y4b{bottom:221.610000px;}
.y267{bottom:221.790000px;}
.y1b3{bottom:222.150000px;}
.ye0{bottom:223.230000px;}
.y1d4{bottom:226.470000px;}
.y121{bottom:226.830000px;}
.y114{bottom:227.910000px;}
.y6e{bottom:228.810000px;}
.y23f{bottom:230.070000px;}
.y216{bottom:230.430000px;}
.y248{bottom:231.510000px;}
.yae{bottom:232.230000px;}
.y4a{bottom:233.670000px;}
.y168{bottom:234.210000px;}
.y266{bottom:239.070000px;}
.y1b2{bottom:239.430000px;}
.ydf{bottom:240.510000px;}
.y1d3{bottom:243.750000px;}
.y113{bottom:245.190000px;}
.y49{bottom:245.730000px;}
.y6d{bottom:246.090000px;}
.y23e{bottom:247.350000px;}
.y215{bottom:247.710000px;}
.y247{bottom:248.790000px;}
.yad{bottom:249.510000px;}
.y167{bottom:250.590000px;}
.y265{bottom:256.170000px;}
.y1b1{bottom:256.710000px;}
.y48{bottom:257.790000px;}
.y1d2{bottom:261.030000px;}
.y214{bottom:262.290000px;}
.y112{bottom:262.470000px;}
.y6c{bottom:263.370000px;}
.y23d{bottom:264.630000px;}
.y246{bottom:266.070000px;}
.yac{bottom:266.790000px;}
.y47{bottom:269.850000px;}
.y264{bottom:273.450000px;}
.y1b0{bottom:273.990000px;}
.yde{bottom:275.070000px;}
.y1d1{bottom:278.310000px;}
.y213{bottom:278.670000px;}
.y111{bottom:279.750000px;}
.y6b{bottom:280.470000px;}
.y46{bottom:281.910000px;}
.y166{bottom:283.170000px;}
.yab{bottom:284.070000px;}
.y263{bottom:290.730000px;}
.y1af{bottom:291.090000px;}
.ydd{bottom:292.170000px;}
.y45{bottom:293.970000px;}
.y212{bottom:294.870000px;}
.y1d0{bottom:295.410000px;}
.y110{bottom:296.850000px;}
.y6a{bottom:297.750000px;}
.y283{bottom:297.930000px;}
.y23c{bottom:299.010000px;}
.y165{bottom:299.370000px;}
.y245{bottom:300.450000px;}
.yaa{bottom:301.170000px;}
.y44{bottom:306.210000px;}
.y262{bottom:308.010000px;}
.y1ae{bottom:308.370000px;}
.ydc{bottom:309.450000px;}
.y211{bottom:311.250000px;}
.y1cf{bottom:312.690000px;}
.y282{bottom:313.770000px;}
.y10f{bottom:314.130000px;}
.y69{bottom:315.030000px;}
.y164{bottom:315.570000px;}
.y23b{bottom:316.290000px;}
.y43{bottom:318.270000px;}
.ya9{bottom:318.450000px;}
.y244{bottom:322.230000px;}
.y261{bottom:325.290000px;}
.y1ad{bottom:325.650000px;}
.ydb{bottom:326.730000px;}
.y210{bottom:327.450000px;}
.y1ce{bottom:329.970000px;}
.y42{bottom:330.330000px;}
.y10e{bottom:331.410000px;}
.y159{bottom:331.950000px;}
.y68{bottom:332.310000px;}
.y23a{bottom:333.570000px;}
.ya8{bottom:335.730000px;}
.y41{bottom:340.950000px;}
.y260{bottom:342.570000px;}
.y1ac{bottom:342.930000px;}
.y20f{bottom:343.830000px;}
.yda{bottom:344.010000px;}
.y1cd{bottom:347.250000px;}
.y40{bottom:347.610000px;}
.y162{bottom:348.150000px;}
.y10d{bottom:348.690000px;}
.y67{bottom:349.590000px;}
.y239{bottom:350.850000px;}
.ya7{bottom:353.010000px;}
.y3f{bottom:359.670000px;}
.y20e{bottom:360.030000px;}
.y1ab{bottom:360.210000px;}
.yd9{bottom:361.290000px;}
.y161{bottom:364.530000px;}
.y10c{bottom:365.970000px;}
.y66{bottom:366.870000px;}
.y238{bottom:368.130000px;}
.ya6{bottom:370.290000px;}
.y3e{bottom:371.730000px;}
.y20d{bottom:376.230000px;}
.y25f{bottom:376.950000px;}
.y1aa{bottom:377.490000px;}
.yd8{bottom:378.570000px;}
.y160{bottom:380.730000px;}
.y1cc{bottom:381.630000px;}
.y10b{bottom:383.250000px;}
.y3d{bottom:383.790000px;}
.y65{bottom:383.970000px;}
.y237{bottom:385.410000px;}
.ya5{bottom:387.570000px;}
.y20c{bottom:392.610000px;}
.y25e{bottom:394.230000px;}
.y1a9{bottom:394.590000px;}
.yd7{bottom:395.670000px;}
.y3c{bottom:395.850000px;}
.y15f{bottom:396.930000px;}
.y1cb{bottom:398.910000px;}
.y10a{bottom:400.350000px;}
.y64{bottom:401.250000px;}
.y236{bottom:402.510000px;}
.ya4{bottom:404.670000px;}
.y3b{bottom:407.910000px;}
.y25d{bottom:411.510000px;}
.y1a8{bottom:411.870000px;}
.yd6{bottom:412.950000px;}
.y15e{bottom:413.310000px;}
.y1ca{bottom:416.190000px;}
.y109{bottom:417.630000px;}
.y63{bottom:418.530000px;}
.y235{bottom:419.790000px;}
.y3a{bottom:419.970000px;}
.ya3{bottom:421.950000px;}
.y25c{bottom:428.835000px;}
.y1a7{bottom:429.195000px;}
.y15d{bottom:429.555000px;}
.yd5{bottom:430.275000px;}
.y39{bottom:432.075000px;}
.y1c9{bottom:433.515000px;}
.y108{bottom:434.955000px;}
.y62{bottom:435.855000px;}
.y234{bottom:437.115000px;}
.ya2{bottom:439.275000px;}
.y20b{bottom:442.695000px;}
.y38{bottom:444.135000px;}
.y14e{bottom:445.935000px;}
.y1a6{bottom:446.475000px;}
.yd4{bottom:447.555000px;}
.y1c8{bottom:450.795000px;}
.y107{bottom:452.235000px;}
.y61{bottom:453.135000px;}
.y233{bottom:454.395000px;}
.y37{bottom:456.195000px;}
.ya1{bottom:456.555000px;}
.y20a{bottom:459.975000px;}
.y158{bottom:462.135000px;}
.y25b{bottom:463.215000px;}
.y1a5{bottom:463.755000px;}
.yd3{bottom:464.835000px;}
.y1c7{bottom:468.075000px;}
.y36{bottom:468.255000px;}
.y106{bottom:469.515000px;}
.y60{bottom:470.415000px;}
.y232{bottom:471.675000px;}
.ya0{bottom:473.835000px;}
.y209{bottom:477.075000px;}
.y157{bottom:478.515000px;}
.y35{bottom:480.315000px;}
.y25a{bottom:480.495000px;}
.y1a4{bottom:480.855000px;}
.yd2{bottom:481.935000px;}
.y1c6{bottom:485.175000px;}
.y105{bottom:486.795000px;}
.y5f{bottom:487.515000px;}
.y231{bottom:488.955000px;}
.y9f{bottom:490.935000px;}
.y34{bottom:492.375000px;}
.y208{bottom:494.355000px;}
.y156{bottom:494.715000px;}
.y259{bottom:497.775000px;}
.y1a3{bottom:498.135000px;}
.yd1{bottom:499.215000px;}
.y1c5{bottom:502.455000px;}
.y104{bottom:503.895000px;}
.y33{bottom:504.615000px;}
.y5e{bottom:504.795000px;}
.y230{bottom:506.055000px;}
.y9e{bottom:508.215000px;}
.y155{bottom:510.915000px;}
.y1ff{bottom:511.635000px;}
.y258{bottom:515.055000px;}
.y1a2{bottom:515.415000px;}
.yd0{bottom:516.495000px;}
.y32{bottom:516.675000px;}
.y1c4{bottom:519.735000px;}
.y103{bottom:521.175000px;}
.y5d{bottom:522.075000px;}
.y22f{bottom:523.335000px;}
.y9d{bottom:525.495000px;}
.y207{bottom:525.675000px;}
.y154{bottom:527.295000px;}
.y31{bottom:528.735000px;}
.y1fe{bottom:528.915000px;}
.y257{bottom:532.335000px;}
.y1a1{bottom:532.695000px;}
.ycf{bottom:533.775000px;}
.y1c3{bottom:537.015000px;}
.y102{bottom:538.455000px;}
.y5c{bottom:539.355000px;}
.y22e{bottom:540.615000px;}
.y30{bottom:540.795000px;}
.y9c{bottom:542.775000px;}
.y206{bottom:542.955000px;}
.y153{bottom:543.495000px;}
.y1fd{bottom:546.195000px;}
.y256{bottom:549.435000px;}
.y1a0{bottom:549.975000px;}
.yce{bottom:551.055000px;}
.y2f{bottom:552.855000px;}
.y1c2{bottom:554.295000px;}
.y101{bottom:555.735000px;}
.y5b{bottom:556.635000px;}
.y22d{bottom:557.895000px;}
.y14d{bottom:559.875000px;}
.y9b{bottom:560.055000px;}
.y205{bottom:560.235000px;}
.y1fc{bottom:563.475000px;}
.y2e{bottom:564.915000px;}
.y255{bottom:566.715000px;}
.y19f{bottom:567.255000px;}
.ycd{bottom:568.335000px;}
.y1c1{bottom:571.575000px;}
.y100{bottom:573.015000px;}
.y5a{bottom:573.735000px;}
.y22c{bottom:575.175000px;}
.y146{bottom:576.075000px;}
.y2d{bottom:576.975000px;}
.y9a{bottom:577.335000px;}
.y204{bottom:578.415000px;}
.y1fb{bottom:580.575000px;}
.y254{bottom:583.995000px;}
.y19e{bottom:584.355000px;}
.ycc{bottom:585.435000px;}
.y1c0{bottom:588.675000px;}
.y2c{bottom:589.035000px;}
.yff{bottom:590.295000px;}
.y59{bottom:591.015000px;}
.y14a{bottom:592.275000px;}
.y99{bottom:594.435000px;}
.y203{bottom:595.695000px;}
.y76{bottom:597.675000px;}
.y1fa{bottom:597.855000px;}
.y2b{bottom:601.095000px;}
.y253{bottom:601.275000px;}
.y19d{bottom:601.635000px;}
.ycb{bottom:602.715000px;}
.y1bf{bottom:605.955000px;}
.yfe{bottom:607.395000px;}
.y58{bottom:608.295000px;}
.y22b{bottom:609.555000px;}
.y98{bottom:611.715000px;}
.y2a{bottom:613.335000px;}
.y202{bottom:614.055000px;}
.y1f9{bottom:615.135000px;}
.y252{bottom:618.555000px;}
.yca{bottom:619.995000px;}
.y1be{bottom:623.235000px;}
.yfd{bottom:624.675000px;}
.y57{bottom:625.575000px;}
.y145{bottom:626.835000px;}
.y29{bottom:627.375000px;}
.y97{bottom:628.995000px;}
.y201{bottom:631.335000px;}
.y1f8{bottom:632.415000px;}
.y281{bottom:635.835000px;}
.yc9{bottom:637.275000px;}
.y19c{bottom:638.355000px;}
.y1bd{bottom:640.515000px;}
.yfc{bottom:641.955000px;}
.y56{bottom:642.855000px;}
.y144{bottom:644.115000px;}
.y28{bottom:644.295000px;}
.y96{bottom:646.275000px;}
.y200{bottom:648.615000px;}
.y1f7{bottom:649.695000px;}
.y280{bottom:652.935000px;}
.yc8{bottom:654.555000px;}
.y19b{bottom:656.715000px;}
.y1bc{bottom:657.795000px;}
.y251{bottom:658.155000px;}
.yfb{bottom:659.235000px;}
.y27{bottom:660.135000px;}
.y143{bottom:661.395000px;}
.y95{bottom:663.555000px;}
.y1f6{bottom:666.825000px;}
.y27f{bottom:670.245000px;}
.yc7{bottom:671.865000px;}
.y19a{bottom:674.025000px;}
.y1bb{bottom:674.925000px;}
.y26{bottom:676.365000px;}
.yfa{bottom:676.545000px;}
.y12d{bottom:678.705000px;}
.y142{bottom:679.785000px;}
.y94{bottom:680.865000px;}
.y1f5{bottom:684.105000px;}
.y27e{bottom:687.525000px;}
.yc6{bottom:688.965000px;}
.y25{bottom:689.325000px;}
.y199{bottom:692.205000px;}
.yf9{bottom:693.645000px;}
.y12c{bottom:695.805000px;}
.y141{bottom:696.885000px;}
.y93{bottom:697.965000px;}
.y1f4{bottom:701.385000px;}
.y27d{bottom:704.805000px;}
.y24{bottom:705.705000px;}
.yc5{bottom:706.245000px;}
.y198{bottom:709.485000px;}
.yf8{bottom:710.925000px;}
.y12b{bottom:713.085000px;}
.y140{bottom:714.165000px;}
.y92{bottom:715.245000px;}
.y23{bottom:718.665000px;}
.y27c{bottom:722.085000px;}
.yc4{bottom:723.525000px;}
.y197{bottom:726.765000px;}
.yf7{bottom:728.205000px;}
.y12a{bottom:730.365000px;}
.y13f{bottom:731.445000px;}
.y91{bottom:732.525000px;}
.y22{bottom:735.945000px;}
.y27b{bottom:739.365000px;}
.yc3{bottom:740.805000px;}
.y196{bottom:744.045000px;}
.yf6{bottom:745.485000px;}
.y22a{bottom:747.645000px;}
.y129{bottom:748.725000px;}
.y90{bottom:749.805000px;}
.y21{bottom:753.225000px;}
.y27a{bottom:756.465000px;}
.yc2{bottom:758.085000px;}
.y195{bottom:761.325000px;}
.yf5{bottom:762.765000px;}
.y229{bottom:764.925000px;}
.y128{bottom:766.005000px;}
.y8f{bottom:767.085000px;}
.y1f3{bottom:770.325000px;}
.y20{bottom:770.505000px;}
.y279{bottom:773.745000px;}
.yc1{bottom:775.365000px;}
.y194{bottom:778.425000px;}
.yf4{bottom:780.045000px;}
.y228{bottom:782.205000px;}
.y13e{bottom:783.285000px;}
.y8e{bottom:784.365000px;}
.y1f2{bottom:787.605000px;}
.y1f{bottom:787.785000px;}
.y278{bottom:791.025000px;}
.yc0{bottom:792.465000px;}
.y193{bottom:795.705000px;}
.yf3{bottom:797.145000px;}
.y227{bottom:799.305000px;}
.y13d{bottom:800.385000px;}
.y8d{bottom:801.465000px;}
.y1e{bottom:804.165000px;}
.y1f1{bottom:804.885000px;}
.y277{bottom:808.305000px;}
.ybf{bottom:809.745000px;}
.y192{bottom:812.985000px;}
.y120{bottom:814.425000px;}
.yf2{bottom:815.505000px;}
.y226{bottom:816.585000px;}
.y1d{bottom:817.125000px;}
.y13c{bottom:817.665000px;}
.y8c{bottom:818.745000px;}
.y1f0{bottom:822.165000px;}
.y276{bottom:825.585000px;}
.ybe{bottom:827.025000px;}
.y191{bottom:830.265000px;}
.yf1{bottom:832.785000px;}
.y225{bottom:833.865000px;}
.y1c{bottom:834.225000px;}
.y13b{bottom:834.945000px;}
.y8b{bottom:836.025000px;}
.y1ef{bottom:839.445000px;}
.y275{bottom:842.685000px;}
.ybd{bottom:844.305000px;}
.y190{bottom:847.545000px;}
.yf0{bottom:850.065000px;}
.y224{bottom:851.145000px;}
.y1b{bottom:851.505000px;}
.y13a{bottom:852.225000px;}
.y8a{bottom:853.305000px;}
.y1ee{bottom:856.725000px;}
.y274{bottom:859.965000px;}
.ybc{bottom:861.585000px;}
.y18f{bottom:864.825000px;}
.yef{bottom:867.345000px;}
.y223{bottom:868.425000px;}
.y1a{bottom:868.785000px;}
.y139{bottom:869.505000px;}
.y89{bottom:870.585000px;}
.y1ed{bottom:871.485000px;}
.y273{bottom:877.245000px;}
.ybb{bottom:878.685000px;}
.y18e{bottom:880.305000px;}
.yee{bottom:884.625000px;}
.y11f{bottom:885.705000px;}
.y19{bottom:886.065000px;}
.y138{bottom:886.605000px;}
.y88{bottom:887.685000px;}
.y18d{bottom:890.565000px;}
.y272{bottom:894.525000px;}
.yba{bottom:895.965000px;}
.y18{bottom:902.625000px;}
.yed{bottom:902.805000px;}
.y137{bottom:903.885000px;}
.y87{bottom:904.965000px;}
.y182{bottom:905.325000px;}
.y271{bottom:911.850000px;}
.yb9{bottom:913.290000px;}
.y17{bottom:917.790000px;}
.y1eb{bottom:919.590000px;}
.yec{bottom:920.130000px;}
.y136{bottom:921.210000px;}
.y18b{bottom:921.750000px;}
.y86{bottom:922.290000px;}
.y270{bottom:929.130000px;}
.yb8{bottom:930.570000px;}
.y1ea{bottom:935.790000px;}
.yeb{bottom:937.410000px;}
.y18a{bottom:937.950000px;}
.y16{bottom:938.490000px;}
.y85{bottom:939.570000px;}
.y26f{bottom:946.230000px;}
.y243{bottom:947.850000px;}
.y1e9{bottom:951.990000px;}
.yb7{bottom:952.350000px;}
.y189{bottom:954.330000px;}
.yea{bottom:954.690000px;}
.y11e{bottom:955.770000px;}
.y84{bottom:956.850000px;}
.y15{bottom:959.190000px;}
.y26e{bottom:963.510000px;}
.y1e8{bottom:968.370000px;}
.y242{bottom:969.450000px;}
.y188{bottom:970.530000px;}
.ye9{bottom:973.050000px;}
.y83{bottom:974.130000px;}
.y14{bottom:979.890000px;}
.y1e7{bottom:984.570000px;}
.y187{bottom:986.730000px;}
.ye8{bottom:990.150000px;}
.y82{bottom:991.230000px;}
.y13{bottom:999.690000px;}
.y1dd{bottom:1000.950000px;}
.y186{bottom:1003.110000px;}
.y26d{bottom:1003.290000px;}
.ye7{bottom:1007.430000px;}
.y81{bottom:1008.510000px;}
.y12{bottom:1016.250000px;}
.y173{bottom:1019.310000px;}
.y11d{bottom:1024.710000px;}
.y80{bottom:1025.790000px;}
.y11{bottom:1036.950000px;}
.y135{bottom:1041.990000px;}
.y7f{bottom:1043.070000px;}
.y180{bottom:1046.670000px;}
.y10{bottom:1057.650000px;}
.y134{bottom:1059.270000px;}
.y7e{bottom:1060.350000px;}
.y17f{bottom:1062.870000px;}
.y133{bottom:1076.550000px;}
.y7d{bottom:1077.630000px;}
.yf{bottom:1078.350000px;}
.y17e{bottom:1079.250000px;}
.y132{bottom:1093.650000px;}
.y7c{bottom:1094.730000px;}
.y17d{bottom:1095.450000px;}
.ye{bottom:1097.610000px;}
.y131{bottom:1110.930000px;}
.y17c{bottom:1111.650000px;}
.yd{bottom:1112.010000px;}
.y17b{bottom:1128.030000px;}
.y130{bottom:1128.210000px;}
.yc{bottom:1129.290000px;}
.y172{bottom:1144.230000px;}
.y12f{bottom:1145.490000px;}
.yb{bottom:1146.570000px;}
.y171{bottom:1160.640000px;}
.y12e{bottom:1162.800000px;}
.ya{bottom:1163.880000px;}
.y7b{bottom:1184.940000px;}
.y5{bottom:1187.820000px;}
.y1{bottom:1199.880000px;}
.y78{bottom:1200.060000px;}
.h29{height:5.653125px;}
.h3e{height:5.729063px;}
.h35{height:13.680000px;}
.h39{height:13.680150px;}
.h3a{height:13.860000px;}
.h24{height:15.480000px;}
.h27{height:15.516000px;}
.h23{height:15.660000px;}
.h2b{height:15.696000px;}
.h2a{height:17.280000px;}
.h16{height:17.666016px;}
.h6{height:17.903320px;}
.h1b{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:21.420000px;}
.h3c{height:23.319141px;}
.h2d{height:26.640000px;}
.h4{height:27.210938px;}
.h15{height:29.280938px;}
.h2e{height:29.678906px;}
.h33{height:30.960000px;}
.h32{height:30.996000px;}
.h30{height:31.140000px;}
.h20{height:31.860000px;}
.h3d{height:32.580000px;}
.h3{height:33.011719px;}
.h14{height:34.419375px;}
.h34{height:35.332031px;}
.h1d{height:36.462656px;}
.h21{height:37.863281px;}
.h11{height:40.964766px;}
.h10{height:40.985156px;}
.h18{height:41.902031px;}
.h36{height:47.321367px;}
.h5{height:47.344922px;}
.h38{height:47.980898px;}
.hb{height:48.616875px;}
.h8{height:50.068125px;}
.h17{height:50.171484px;}
.h13{height:52.971680px;}
.h22{height:52.998047px;}
.he{height:54.421875px;}
.h3b{height:55.296000px;}
.hf{height:58.621992px;}
.ha{height:58.651172px;}
.h1e{height:59.439023px;}
.h12{height:60.226875px;}
.h1c{height:60.741562px;}
.h1f{height:61.423863px;}
.hd{height:61.664062px;}
.h9{height:65.884219px;}
.h37{height:69.120000px;}
.hc{height:72.562500px;}
.h19{height:73.116000px;}
.h31{height:77.580000px;}
.h2f{height:109.440000px;}
.h25{height:113.040000px;}
.h28{height:113.220000px;}
.h26{height:113.256000px;}
.h2c{height:124.200000px;}
.h1a{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.wd{width:21.240000px;}
.w7{width:70.956000px;}
.w1e{width:73.440000px;}
.w1c{width:73.620000px;}
.w1d{width:73.656000px;}
.w23{width:84.960000px;}
.w12{width:92.916000px;}
.w15{width:93.420000px;}
.w1a{width:95.076000px;}
.w13{width:103.320000px;}
.w14{width:103.356000px;}
.w17{width:103.500000px;}
.w18{width:103.536000px;}
.wf{width:104.760000px;}
.w19{width:137.160000px;}
.w20{width:158.580000px;}
.w21{width:169.590000px;}
.w10{width:177.510000px;}
.w16{width:177.870000px;}
.w1f{width:180.030000px;}
.wc{width:212.610000px;}
.w2{width:212.790000px;}
.wa{width:223.230000px;}
.w9{width:228.450000px;}
.w8{width:228.630000px;}
.w11{width:395.175000px;}
.w1b{width:445.215000px;}
.w4{width:446.655000px;}
.we{width:450.795000px;}
.w24{width:595.545000px;}
.w6{width:680.325000px;}
.w22{width:682.485000px;}
.wb{width:684.645000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x56{left:1.980000px;}
.x2{left:8.100000px;}
.x4{left:9.180000px;}
.x1e{left:10.800000px;}
.x25{left:12.420000px;}
.x42{left:14.400000px;}
.x3d{left:15.660000px;}
.x2a{left:17.820000px;}
.x46{left:19.980000px;}
.x4d{left:21.420000px;}
.x45{left:23.220000px;}
.x29{left:24.300000px;}
.x3f{left:28.080000px;}
.x36{left:31.140000px;}
.x6{left:32.940000px;}
.x26{left:36.900000px;}
.x2e{left:38.160000px;}
.x34{left:41.220000px;}
.x33{left:43.020000px;}
.x3a{left:47.880000px;}
.x31{left:48.954000px;}
.x35{left:51.660000px;}
.x4c{left:52.740000px;}
.x55{left:55.074000px;}
.x38{left:58.500000px;}
.x2b{left:59.940000px;}
.x37{left:65.160000px;}
.x20{left:70.740000px;}
.x4a{left:72.534000px;}
.x4f{left:75.960000px;}
.x50{left:81.570000px;}
.x40{left:84.060000px;}
.x32{left:85.365000px;}
.x4e{left:86.574000px;}
.x23{left:104.256000px;}
.x1{left:106.236000px;}
.x57{left:114.516000px;}
.x51{left:117.930000px;}
.xa{left:120.275987px;}
.x2c{left:123.870000px;}
.x1a{left:127.655987px;}
.x9{left:131.795987px;}
.x53{left:133.235987px;}
.x27{left:136.295987px;}
.xf{left:149.615987px;}
.x49{left:156.089987px;}
.x54{left:159.869987px;}
.xe{left:171.389987px;}
.x28{left:172.469987px;}
.x48{left:186.149987px;}
.x58{left:199.470000px;}
.x3b{left:209.189987px;}
.xb{left:212.249987px;}
.x3e{left:245.010000px;}
.x10{left:254.009987px;}
.x3c{left:257.069987px;}
.x11{left:279.389987px;}
.xc{left:286.814987px;}
.x13{left:317.594987px;}
.x3{left:319.035000px;}
.x8{left:327.999000px;}
.x22{left:331.599000px;}
.x1f{left:335.055000px;}
.x24{left:338.115000px;}
.x5{left:340.095000px;}
.x14{left:390.134987px;}
.x41{left:415.155000px;}
.x52{left:418.574987px;}
.x12{left:435.674987px;}
.xd{left:446.474987px;}
.x1c{left:459.254987px;}
.x1d{left:480.524987px;}
.x2d{left:484.485000px;}
.x43{left:489.525000px;}
.x39{left:515.769000px;}
.x1b{left:517.604987px;}
.x21{left:563.505000px;}
.x2f{left:588.525000px;}
.x15{left:596.984987px;}
.x16{left:607.964987px;}
.x18{left:610.844987px;}
.x4b{left:616.425000px;}
.x44{left:638.205000px;}
.x17{left:646.304987px;}
.x19{left:661.244987px;}
.x30{left:692.610000px;}
.x47{left:712.590000px;}
.x7{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.592000pt;}
.ls33{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.441067pt;}
.lse{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.269867pt;}
.ls20{letter-spacing:-0.259200pt;}
.ls46{letter-spacing:-0.239467pt;}
.ls47{letter-spacing:-0.198933pt;}
.ls34{letter-spacing:-0.112533pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.116480pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.198933pt;}
.ls2e{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.234667pt;}
.ls48{letter-spacing:0.239467pt;}
.ls14{letter-spacing:0.245760pt;}
.ls21{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.281600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.380800pt;}
.ls25{letter-spacing:0.391040pt;}
.ls5{letter-spacing:0.439040pt;}
.ls3b{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.482133pt;}
.ls31{letter-spacing:0.524800pt;}
.ls2f{letter-spacing:0.560000pt;}
.ls1e{letter-spacing:0.736000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls27{letter-spacing:2.058667pt;}
.ls26{letter-spacing:2.080000pt;}
.ls3c{letter-spacing:2.720000pt;}
.ls3a{letter-spacing:3.360000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls6{letter-spacing:5.280000pt;}
.ls18{letter-spacing:6.560000pt;}
.ls23{letter-spacing:7.632640pt;}
.ls28{letter-spacing:7.739307pt;}
.ls3f{letter-spacing:7.840000pt;}
.ls2d{letter-spacing:8.480000pt;}
.ls2c{letter-spacing:9.120000pt;}
.ls3e{letter-spacing:11.040000pt;}
.ls1d{letter-spacing:12.320000pt;}
.ls22{letter-spacing:12.960000pt;}
.ls3d{letter-spacing:13.392640pt;}
.lsa{letter-spacing:14.240000pt;}
.ls7{letter-spacing:15.520000pt;}
.ls19{letter-spacing:16.800000pt;}
.ls17{letter-spacing:20.000000pt;}
.ls29{letter-spacing:20.640000pt;}
.ls36{letter-spacing:21.920000pt;}
.ls38{letter-spacing:23.840000pt;}
.ls39{letter-spacing:24.000000pt;}
.ls30{letter-spacing:28.320000pt;}
.ls4{letter-spacing:29.120000pt;}
.ls1b{letter-spacing:30.880000pt;}
.ls24{letter-spacing:36.640000pt;}
.ls35{letter-spacing:39.611307pt;}
.ls2b{letter-spacing:39.818667pt;}
.ls1a{letter-spacing:41.120000pt;}
.ls32{letter-spacing:47.040000pt;}
.ls40{letter-spacing:60.320000pt;}
.ls42{letter-spacing:60.960000pt;}
.ls41{letter-spacing:61.066667pt;}
.ls43{letter-spacing:61.120000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.471680pt;}
.ws12{word-spacing:-13.762133pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.511040pt;}
.ws14{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.167467pt;}
.wse{word-spacing:-13.020800pt;}
.ws3{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.688000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.280000pt;}
.ws1b{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.918933pt;}
.ws17{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.480533pt;}
.ws19{word-spacing:-10.400000pt;}
.wsb{word-spacing:-10.334080pt;}
.ws18{word-spacing:-10.278933pt;}
.ws8{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.945920pt;}
.wsc{word-spacing:-8.676053pt;}
.ws9{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._29{margin-left:-3.628800pt;}
._c{margin-left:-2.476160pt;}
._0{margin-left:-1.233920pt;}
._1{width:0.933760pt;}
._2{width:2.215253pt;}
._b{width:4.003200pt;}
._3{width:5.122560pt;}
._4{width:6.199040pt;}
._14{width:7.192960pt;}
._a{width:8.123520pt;}
._18{width:9.895040pt;}
._7{width:10.950400pt;}
._8{width:11.952640pt;}
._10{width:12.886400pt;}
._f{width:13.834240pt;}
._e{width:14.848000pt;}
._11{width:16.407040pt;}
._16{width:17.476480pt;}
._17{width:18.561280pt;}
._9{width:19.933440pt;}
._d{width:21.654187pt;}
._22{width:22.776533pt;}
._25{width:23.847893pt;}
._19{width:24.913280pt;}
._1a{width:25.861120pt;}
._2e{width:26.782933pt;}
._6{width:27.880107pt;}
._12{width:29.213440pt;}
._13{width:30.735360pt;}
._1e{width:32.063147pt;}
._5{width:33.256107pt;}
._30{width:34.315520pt;}
._24{width:35.484160pt;}
._20{width:36.918400pt;}
._28{width:37.927680pt;}
._27{width:39.043200pt;}
._33{width:39.944960pt;}
._2c{width:41.114880pt;}
._23{width:42.071040pt;}
._2f{width:43.102720pt;}
._1c{width:44.036480pt;}
._31{width:45.068160pt;}
._21{width:46.055040pt;}
._36{width:47.170560pt;}
._2d{width:48.232960pt;}
._1f{width:49.401600pt;}
._32{width:52.026880pt;}
._2a{width:53.810560pt;}
._34{width:55.510400pt;}
._37{width:56.804267pt;}
._2b{width:58.879360pt;}
._39{width:60.675200pt;}
._35{width:63.246720pt;}
._1d{width:64.188160pt;}
._1b{width:65.284480pt;}
._26{width:66.688000pt;}
._15{width:69.746560pt;}
._38{width:79.890987pt;}
.fsb{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.760000pt;}
.y284{bottom:2.240000pt;}
.y14c{bottom:2.560000pt;}
.y14b{bottom:2.720000pt;}
.y18c{bottom:2.760000pt;}
.y148{bottom:2.880000pt;}
.y77{bottom:3.520000pt;}
.y7a{bottom:3.840000pt;}
.y79{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:6.400000pt;}
.y181{bottom:7.520000pt;}
.y1ec{bottom:9.440000pt;}
.y149{bottom:9.760000pt;}
.y28e{bottom:10.560000pt;}
.y3{bottom:10.880000pt;}
.y287{bottom:14.560000pt;}
.y1e6{bottom:16.320000pt;}
.y17a{bottom:16.480000pt;}
.y147{bottom:16.800000pt;}
.y1e5{bottom:23.200000pt;}
.y152{bottom:25.280000pt;}
.y286{bottom:26.880000pt;}
.y9{bottom:29.280000pt;}
.y1e3{bottom:30.080000pt;}
.y179{bottom:30.240000pt;}
.y1e2{bottom:30.400000pt;}
.y15c{bottom:32.160000pt;}
.y185{bottom:32.360000pt;}
.y1e4{bottom:37.120000pt;}
.y1df{bottom:37.440000pt;}
.y151{bottom:39.040000pt;}
.y28a{bottom:39.066667pt;}
.y7{bottom:43.200000pt;}
.y178{bottom:44.000000pt;}
.y1e1{bottom:44.320000pt;}
.y15b{bottom:45.920000pt;}
.y16a{bottom:46.080000pt;}
.y184{bottom:46.120000pt;}
.y1de{bottom:51.200000pt;}
.y285{bottom:51.360000pt;}
.y150{bottom:52.800000pt;}
.y177{bottom:57.760000pt;}
.y1e0{bottom:58.080000pt;}
.y15a{bottom:59.840000pt;}
.y183{bottom:59.880000pt;}
.y6{bottom:64.800000pt;}
.y14f{bottom:66.720000pt;}
.y176{bottom:71.680000pt;}
.y290{bottom:76.480000pt;}
.y28f{bottom:78.080000pt;}
.y1dc{bottom:78.560000pt;}
.y28d{bottom:79.360000pt;}
.y11c{bottom:80.000000pt;}
.y222{bottom:81.120000pt;}
.y250{bottom:83.040000pt;}
.yb6{bottom:83.840000pt;}
.y175{bottom:85.440000pt;}
.y75{bottom:88.000000pt;}
.y55{bottom:89.600000pt;}
.y1ba{bottom:90.080000pt;}
.y170{bottom:90.560000pt;}
.ye6{bottom:91.040000pt;}
.y127{bottom:91.360000pt;}
.y169{bottom:92.480000pt;}
.y1db{bottom:93.920000pt;}
.y11b{bottom:95.200000pt;}
.y21c{bottom:96.480000pt;}
.y24f{bottom:98.400000pt;}
.yb5{bottom:99.040000pt;}
.y174{bottom:99.200000pt;}
.y54{bottom:100.320000pt;}
.y74{bottom:103.360000pt;}
.y1b9{bottom:105.440000pt;}
.ye5{bottom:106.400000pt;}
.y126{bottom:106.720000pt;}
.y16f{bottom:107.040000pt;}
.y1da{bottom:109.280000pt;}
.y28c{bottom:109.440000pt;}
.y11a{bottom:110.560000pt;}
.y53{bottom:111.040000pt;}
.y21b{bottom:111.840000pt;}
.y24e{bottom:113.760000pt;}
.yb4{bottom:114.400000pt;}
.y28b{bottom:117.280000pt;}
.y73{bottom:118.720000pt;}
.y26c{bottom:120.480000pt;}
.y1b8{bottom:120.800000pt;}
.y16e{bottom:121.440000pt;}
.y52{bottom:121.760000pt;}
.y125{bottom:123.040000pt;}
.y1d9{bottom:124.640000pt;}
.y119{bottom:125.920000pt;}
.y221{bottom:127.200000pt;}
.y21a{bottom:128.160000pt;}
.y24d{bottom:129.120000pt;}
.yb3{bottom:129.760000pt;}
.y51{bottom:132.640000pt;}
.y26b{bottom:135.680000pt;}
.y16d{bottom:135.840000pt;}
.y1b7{bottom:136.160000pt;}
.ye4{bottom:137.120000pt;}
.y72{bottom:137.920000pt;}
.y124{bottom:138.400000pt;}
.y1d8{bottom:140.000000pt;}
.y118{bottom:141.280000pt;}
.y220{bottom:142.400000pt;}
.y50{bottom:143.360000pt;}
.y24c{bottom:144.480000pt;}
.yb2{bottom:145.120000pt;}
.y16c{bottom:150.400000pt;}
.y26a{bottom:151.040000pt;}
.y1b6{bottom:151.520000pt;}
.ye3{bottom:152.480000pt;}
.y4f{bottom:154.080000pt;}
.y123{bottom:154.720000pt;}
.y1d7{bottom:155.360000pt;}
.y117{bottom:156.640000pt;}
.y71{bottom:157.280000pt;}
.y21f{bottom:157.760000pt;}
.y219{bottom:158.720000pt;}
.y24b{bottom:159.680000pt;}
.yb1{bottom:160.480000pt;}
.y4e{bottom:164.826667pt;}
.y269{bottom:166.426667pt;}
.y1b5{bottom:166.746667pt;}
.ye2{bottom:167.706667pt;}
.y122{bottom:170.106667pt;}
.y1d6{bottom:170.586667pt;}
.y116{bottom:172.026667pt;}
.y70{bottom:172.666667pt;}
.y21e{bottom:173.146667pt;}
.y241{bottom:173.946667pt;}
.y218{bottom:174.106667pt;}
.y24a{bottom:175.066667pt;}
.y4d{bottom:175.546667pt;}
.yb0{bottom:175.706667pt;}
.y289{bottom:178.906667pt;}
.y16b{bottom:179.386667pt;}
.y268{bottom:181.786667pt;}
.y1b4{bottom:182.106667pt;}
.ye1{bottom:183.066667pt;}
.y1d5{bottom:185.946667pt;}
.y4c{bottom:186.266667pt;}
.y115{bottom:187.226667pt;}
.y6f{bottom:188.026667pt;}
.y21d{bottom:188.506667pt;}
.y240{bottom:189.146667pt;}
.y217{bottom:189.466667pt;}
.y249{bottom:190.426667pt;}
.yaf{bottom:191.066667pt;}
.y288{bottom:191.226667pt;}
.y163{bottom:193.786667pt;}
.y4b{bottom:196.986667pt;}
.y267{bottom:197.146667pt;}
.y1b3{bottom:197.466667pt;}
.ye0{bottom:198.426667pt;}
.y1d4{bottom:201.306667pt;}
.y121{bottom:201.626667pt;}
.y114{bottom:202.586667pt;}
.y6e{bottom:203.386667pt;}
.y23f{bottom:204.506667pt;}
.y216{bottom:204.826667pt;}
.y248{bottom:205.786667pt;}
.yae{bottom:206.426667pt;}
.y4a{bottom:207.706667pt;}
.y168{bottom:208.186667pt;}
.y266{bottom:212.506667pt;}
.y1b2{bottom:212.826667pt;}
.ydf{bottom:213.786667pt;}
.y1d3{bottom:216.666667pt;}
.y113{bottom:217.946667pt;}
.y49{bottom:218.426667pt;}
.y6d{bottom:218.746667pt;}
.y23e{bottom:219.866667pt;}
.y215{bottom:220.186667pt;}
.y247{bottom:221.146667pt;}
.yad{bottom:221.786667pt;}
.y167{bottom:222.746667pt;}
.y265{bottom:227.706667pt;}
.y1b1{bottom:228.186667pt;}
.y48{bottom:229.146667pt;}
.y1d2{bottom:232.026667pt;}
.y214{bottom:233.146667pt;}
.y112{bottom:233.306667pt;}
.y6c{bottom:234.106667pt;}
.y23d{bottom:235.226667pt;}
.y246{bottom:236.506667pt;}
.yac{bottom:237.146667pt;}
.y47{bottom:239.866667pt;}
.y264{bottom:243.066667pt;}
.y1b0{bottom:243.546667pt;}
.yde{bottom:244.506667pt;}
.y1d1{bottom:247.386667pt;}
.y213{bottom:247.706667pt;}
.y111{bottom:248.666667pt;}
.y6b{bottom:249.306667pt;}
.y46{bottom:250.586667pt;}
.y166{bottom:251.706667pt;}
.yab{bottom:252.506667pt;}
.y263{bottom:258.426667pt;}
.y1af{bottom:258.746667pt;}
.ydd{bottom:259.706667pt;}
.y45{bottom:261.306667pt;}
.y212{bottom:262.106667pt;}
.y1d0{bottom:262.586667pt;}
.y110{bottom:263.866667pt;}
.y6a{bottom:264.666667pt;}
.y283{bottom:264.826667pt;}
.y23c{bottom:265.786667pt;}
.y165{bottom:266.106667pt;}
.y245{bottom:267.066667pt;}
.yaa{bottom:267.706667pt;}
.y44{bottom:272.186667pt;}
.y262{bottom:273.786667pt;}
.y1ae{bottom:274.106667pt;}
.ydc{bottom:275.066667pt;}
.y211{bottom:276.666667pt;}
.y1cf{bottom:277.946667pt;}
.y282{bottom:278.906667pt;}
.y10f{bottom:279.226667pt;}
.y69{bottom:280.026667pt;}
.y164{bottom:280.506667pt;}
.y23b{bottom:281.146667pt;}
.y43{bottom:282.906667pt;}
.ya9{bottom:283.066667pt;}
.y244{bottom:286.426667pt;}
.y261{bottom:289.146667pt;}
.y1ad{bottom:289.466667pt;}
.ydb{bottom:290.426667pt;}
.y210{bottom:291.066667pt;}
.y1ce{bottom:293.306667pt;}
.y42{bottom:293.626667pt;}
.y10e{bottom:294.586667pt;}
.y159{bottom:295.066667pt;}
.y68{bottom:295.386667pt;}
.y23a{bottom:296.506667pt;}
.ya8{bottom:298.426667pt;}
.y41{bottom:303.066667pt;}
.y260{bottom:304.506667pt;}
.y1ac{bottom:304.826667pt;}
.y20f{bottom:305.626667pt;}
.yda{bottom:305.786667pt;}
.y1cd{bottom:308.666667pt;}
.y40{bottom:308.986667pt;}
.y162{bottom:309.466667pt;}
.y10d{bottom:309.946667pt;}
.y67{bottom:310.746667pt;}
.y239{bottom:311.866667pt;}
.ya7{bottom:313.786667pt;}
.y3f{bottom:319.706667pt;}
.y20e{bottom:320.026667pt;}
.y1ab{bottom:320.186667pt;}
.yd9{bottom:321.146667pt;}
.y161{bottom:324.026667pt;}
.y10c{bottom:325.306667pt;}
.y66{bottom:326.106667pt;}
.y238{bottom:327.226667pt;}
.ya6{bottom:329.146667pt;}
.y3e{bottom:330.426667pt;}
.y20d{bottom:334.426667pt;}
.y25f{bottom:335.066667pt;}
.y1aa{bottom:335.546667pt;}
.yd8{bottom:336.506667pt;}
.y160{bottom:338.426667pt;}
.y1cc{bottom:339.226667pt;}
.y10b{bottom:340.666667pt;}
.y3d{bottom:341.146667pt;}
.y65{bottom:341.306667pt;}
.y237{bottom:342.586667pt;}
.ya5{bottom:344.506667pt;}
.y20c{bottom:348.986667pt;}
.y25e{bottom:350.426667pt;}
.y1a9{bottom:350.746667pt;}
.yd7{bottom:351.706667pt;}
.y3c{bottom:351.866667pt;}
.y15f{bottom:352.826667pt;}
.y1cb{bottom:354.586667pt;}
.y10a{bottom:355.866667pt;}
.y64{bottom:356.666667pt;}
.y236{bottom:357.786667pt;}
.ya4{bottom:359.706667pt;}
.y3b{bottom:362.586667pt;}
.y25d{bottom:365.786667pt;}
.y1a8{bottom:366.106667pt;}
.yd6{bottom:367.066667pt;}
.y15e{bottom:367.386667pt;}
.y1ca{bottom:369.946667pt;}
.y109{bottom:371.226667pt;}
.y63{bottom:372.026667pt;}
.y235{bottom:373.146667pt;}
.y3a{bottom:373.306667pt;}
.ya3{bottom:375.066667pt;}
.y25c{bottom:381.186667pt;}
.y1a7{bottom:381.506667pt;}
.y15d{bottom:381.826667pt;}
.yd5{bottom:382.466667pt;}
.y39{bottom:384.066667pt;}
.y1c9{bottom:385.346667pt;}
.y108{bottom:386.626667pt;}
.y62{bottom:387.426667pt;}
.y234{bottom:388.546667pt;}
.ya2{bottom:390.466667pt;}
.y20b{bottom:393.506667pt;}
.y38{bottom:394.786667pt;}
.y14e{bottom:396.386667pt;}
.y1a6{bottom:396.866667pt;}
.yd4{bottom:397.826667pt;}
.y1c8{bottom:400.706667pt;}
.y107{bottom:401.986667pt;}
.y61{bottom:402.786667pt;}
.y233{bottom:403.906667pt;}
.y37{bottom:405.506667pt;}
.ya1{bottom:405.826667pt;}
.y20a{bottom:408.866667pt;}
.y158{bottom:410.786667pt;}
.y25b{bottom:411.746667pt;}
.y1a5{bottom:412.226667pt;}
.yd3{bottom:413.186667pt;}
.y1c7{bottom:416.066667pt;}
.y36{bottom:416.226667pt;}
.y106{bottom:417.346667pt;}
.y60{bottom:418.146667pt;}
.y232{bottom:419.266667pt;}
.ya0{bottom:421.186667pt;}
.y209{bottom:424.066667pt;}
.y157{bottom:425.346667pt;}
.y35{bottom:426.946667pt;}
.y25a{bottom:427.106667pt;}
.y1a4{bottom:427.426667pt;}
.yd2{bottom:428.386667pt;}
.y1c6{bottom:431.266667pt;}
.y105{bottom:432.706667pt;}
.y5f{bottom:433.346667pt;}
.y231{bottom:434.626667pt;}
.y9f{bottom:436.386667pt;}
.y34{bottom:437.666667pt;}
.y208{bottom:439.426667pt;}
.y156{bottom:439.746667pt;}
.y259{bottom:442.466667pt;}
.y1a3{bottom:442.786667pt;}
.yd1{bottom:443.746667pt;}
.y1c5{bottom:446.626667pt;}
.y104{bottom:447.906667pt;}
.y33{bottom:448.546667pt;}
.y5e{bottom:448.706667pt;}
.y230{bottom:449.826667pt;}
.y9e{bottom:451.746667pt;}
.y155{bottom:454.146667pt;}
.y1ff{bottom:454.786667pt;}
.y258{bottom:457.826667pt;}
.y1a2{bottom:458.146667pt;}
.yd0{bottom:459.106667pt;}
.y32{bottom:459.266667pt;}
.y1c4{bottom:461.986667pt;}
.y103{bottom:463.266667pt;}
.y5d{bottom:464.066667pt;}
.y22f{bottom:465.186667pt;}
.y9d{bottom:467.106667pt;}
.y207{bottom:467.266667pt;}
.y154{bottom:468.706667pt;}
.y31{bottom:469.986667pt;}
.y1fe{bottom:470.146667pt;}
.y257{bottom:473.186667pt;}
.y1a1{bottom:473.506667pt;}
.ycf{bottom:474.466667pt;}
.y1c3{bottom:477.346667pt;}
.y102{bottom:478.626667pt;}
.y5c{bottom:479.426667pt;}
.y22e{bottom:480.546667pt;}
.y30{bottom:480.706667pt;}
.y9c{bottom:482.466667pt;}
.y206{bottom:482.626667pt;}
.y153{bottom:483.106667pt;}
.y1fd{bottom:485.506667pt;}
.y256{bottom:488.386667pt;}
.y1a0{bottom:488.866667pt;}
.yce{bottom:489.826667pt;}
.y2f{bottom:491.426667pt;}
.y1c2{bottom:492.706667pt;}
.y101{bottom:493.986667pt;}
.y5b{bottom:494.786667pt;}
.y22d{bottom:495.906667pt;}
.y14d{bottom:497.666667pt;}
.y9b{bottom:497.826667pt;}
.y205{bottom:497.986667pt;}
.y1fc{bottom:500.866667pt;}
.y2e{bottom:502.146667pt;}
.y255{bottom:503.746667pt;}
.y19f{bottom:504.226667pt;}
.ycd{bottom:505.186667pt;}
.y1c1{bottom:508.066667pt;}
.y100{bottom:509.346667pt;}
.y5a{bottom:509.986667pt;}
.y22c{bottom:511.266667pt;}
.y146{bottom:512.066667pt;}
.y2d{bottom:512.866667pt;}
.y9a{bottom:513.186667pt;}
.y204{bottom:514.146667pt;}
.y1fb{bottom:516.066667pt;}
.y254{bottom:519.106667pt;}
.y19e{bottom:519.426667pt;}
.ycc{bottom:520.386667pt;}
.y1c0{bottom:523.266667pt;}
.y2c{bottom:523.586667pt;}
.yff{bottom:524.706667pt;}
.y59{bottom:525.346667pt;}
.y14a{bottom:526.466667pt;}
.y99{bottom:528.386667pt;}
.y203{bottom:529.506667pt;}
.y76{bottom:531.266667pt;}
.y1fa{bottom:531.426667pt;}
.y2b{bottom:534.306667pt;}
.y253{bottom:534.466667pt;}
.y19d{bottom:534.786667pt;}
.ycb{bottom:535.746667pt;}
.y1bf{bottom:538.626667pt;}
.yfe{bottom:539.906667pt;}
.y58{bottom:540.706667pt;}
.y22b{bottom:541.826667pt;}
.y98{bottom:543.746667pt;}
.y2a{bottom:545.186667pt;}
.y202{bottom:545.826667pt;}
.y1f9{bottom:546.786667pt;}
.y252{bottom:549.826667pt;}
.yca{bottom:551.106667pt;}
.y1be{bottom:553.986667pt;}
.yfd{bottom:555.266667pt;}
.y57{bottom:556.066667pt;}
.y145{bottom:557.186667pt;}
.y29{bottom:557.666667pt;}
.y97{bottom:559.106667pt;}
.y201{bottom:561.186667pt;}
.y1f8{bottom:562.146667pt;}
.y281{bottom:565.186667pt;}
.yc9{bottom:566.466667pt;}
.y19c{bottom:567.426667pt;}
.y1bd{bottom:569.346667pt;}
.yfc{bottom:570.626667pt;}
.y56{bottom:571.426667pt;}
.y144{bottom:572.546667pt;}
.y28{bottom:572.706667pt;}
.y96{bottom:574.466667pt;}
.y200{bottom:576.546667pt;}
.y1f7{bottom:577.506667pt;}
.y280{bottom:580.386667pt;}
.yc8{bottom:581.826667pt;}
.y19b{bottom:583.746667pt;}
.y1bc{bottom:584.706667pt;}
.y251{bottom:585.026667pt;}
.yfb{bottom:585.986667pt;}
.y27{bottom:586.786667pt;}
.y143{bottom:587.906667pt;}
.y95{bottom:589.826667pt;}
.y1f6{bottom:592.733333pt;}
.y27f{bottom:595.773333pt;}
.yc7{bottom:597.213333pt;}
.y19a{bottom:599.133333pt;}
.y1bb{bottom:599.933333pt;}
.y26{bottom:601.213333pt;}
.yfa{bottom:601.373333pt;}
.y12d{bottom:603.293333pt;}
.y142{bottom:604.253333pt;}
.y94{bottom:605.213333pt;}
.y1f5{bottom:608.093333pt;}
.y27e{bottom:611.133333pt;}
.yc6{bottom:612.413333pt;}
.y25{bottom:612.733333pt;}
.y199{bottom:615.293333pt;}
.yf9{bottom:616.573333pt;}
.y12c{bottom:618.493333pt;}
.y141{bottom:619.453333pt;}
.y93{bottom:620.413333pt;}
.y1f4{bottom:623.453333pt;}
.y27d{bottom:626.493333pt;}
.y24{bottom:627.293333pt;}
.yc5{bottom:627.773333pt;}
.y198{bottom:630.653333pt;}
.yf8{bottom:631.933333pt;}
.y12b{bottom:633.853333pt;}
.y140{bottom:634.813333pt;}
.y92{bottom:635.773333pt;}
.y23{bottom:638.813333pt;}
.y27c{bottom:641.853333pt;}
.yc4{bottom:643.133333pt;}
.y197{bottom:646.013333pt;}
.yf7{bottom:647.293333pt;}
.y12a{bottom:649.213333pt;}
.y13f{bottom:650.173333pt;}
.y91{bottom:651.133333pt;}
.y22{bottom:654.173333pt;}
.y27b{bottom:657.213333pt;}
.yc3{bottom:658.493333pt;}
.y196{bottom:661.373333pt;}
.yf6{bottom:662.653333pt;}
.y22a{bottom:664.573333pt;}
.y129{bottom:665.533333pt;}
.y90{bottom:666.493333pt;}
.y21{bottom:669.533333pt;}
.y27a{bottom:672.413333pt;}
.yc2{bottom:673.853333pt;}
.y195{bottom:676.733333pt;}
.yf5{bottom:678.013333pt;}
.y229{bottom:679.933333pt;}
.y128{bottom:680.893333pt;}
.y8f{bottom:681.853333pt;}
.y1f3{bottom:684.733333pt;}
.y20{bottom:684.893333pt;}
.y279{bottom:687.773333pt;}
.yc1{bottom:689.213333pt;}
.y194{bottom:691.933333pt;}
.yf4{bottom:693.373333pt;}
.y228{bottom:695.293333pt;}
.y13e{bottom:696.253333pt;}
.y8e{bottom:697.213333pt;}
.y1f2{bottom:700.093333pt;}
.y1f{bottom:700.253333pt;}
.y278{bottom:703.133333pt;}
.yc0{bottom:704.413333pt;}
.y193{bottom:707.293333pt;}
.yf3{bottom:708.573333pt;}
.y227{bottom:710.493333pt;}
.y13d{bottom:711.453333pt;}
.y8d{bottom:712.413333pt;}
.y1e{bottom:714.813333pt;}
.y1f1{bottom:715.453333pt;}
.y277{bottom:718.493333pt;}
.ybf{bottom:719.773333pt;}
.y192{bottom:722.653333pt;}
.y120{bottom:723.933333pt;}
.yf2{bottom:724.893333pt;}
.y226{bottom:725.853333pt;}
.y1d{bottom:726.333333pt;}
.y13c{bottom:726.813333pt;}
.y8c{bottom:727.773333pt;}
.y1f0{bottom:730.813333pt;}
.y276{bottom:733.853333pt;}
.ybe{bottom:735.133333pt;}
.y191{bottom:738.013333pt;}
.yf1{bottom:740.253333pt;}
.y225{bottom:741.213333pt;}
.y1c{bottom:741.533333pt;}
.y13b{bottom:742.173333pt;}
.y8b{bottom:743.133333pt;}
.y1ef{bottom:746.173333pt;}
.y275{bottom:749.053333pt;}
.ybd{bottom:750.493333pt;}
.y190{bottom:753.373333pt;}
.yf0{bottom:755.613333pt;}
.y224{bottom:756.573333pt;}
.y1b{bottom:756.893333pt;}
.y13a{bottom:757.533333pt;}
.y8a{bottom:758.493333pt;}
.y1ee{bottom:761.533333pt;}
.y274{bottom:764.413333pt;}
.ybc{bottom:765.853333pt;}
.y18f{bottom:768.733333pt;}
.yef{bottom:770.973333pt;}
.y223{bottom:771.933333pt;}
.y1a{bottom:772.253333pt;}
.y139{bottom:772.893333pt;}
.y89{bottom:773.853333pt;}
.y1ed{bottom:774.653333pt;}
.y273{bottom:779.773333pt;}
.ybb{bottom:781.053333pt;}
.y18e{bottom:782.493333pt;}
.yee{bottom:786.333333pt;}
.y11f{bottom:787.293333pt;}
.y19{bottom:787.613333pt;}
.y138{bottom:788.093333pt;}
.y88{bottom:789.053333pt;}
.y18d{bottom:791.613333pt;}
.y272{bottom:795.133333pt;}
.yba{bottom:796.413333pt;}
.y18{bottom:802.333333pt;}
.yed{bottom:802.493333pt;}
.y137{bottom:803.453333pt;}
.y87{bottom:804.413333pt;}
.y182{bottom:804.733333pt;}
.y271{bottom:810.533333pt;}
.yb9{bottom:811.813333pt;}
.y17{bottom:815.813333pt;}
.y1eb{bottom:817.413333pt;}
.yec{bottom:817.893333pt;}
.y136{bottom:818.853333pt;}
.y18b{bottom:819.333333pt;}
.y86{bottom:819.813333pt;}
.y270{bottom:825.893333pt;}
.yb8{bottom:827.173333pt;}
.y1ea{bottom:831.813333pt;}
.yeb{bottom:833.253333pt;}
.y18a{bottom:833.733333pt;}
.y16{bottom:834.213333pt;}
.y85{bottom:835.173333pt;}
.y26f{bottom:841.093333pt;}
.y243{bottom:842.533333pt;}
.y1e9{bottom:846.213333pt;}
.yb7{bottom:846.533333pt;}
.y189{bottom:848.293333pt;}
.yea{bottom:848.613333pt;}
.y11e{bottom:849.573333pt;}
.y84{bottom:850.533333pt;}
.y15{bottom:852.613333pt;}
.y26e{bottom:856.453333pt;}
.y1e8{bottom:860.773333pt;}
.y242{bottom:861.733333pt;}
.y188{bottom:862.693333pt;}
.ye9{bottom:864.933333pt;}
.y83{bottom:865.893333pt;}
.y14{bottom:871.013333pt;}
.y1e7{bottom:875.173333pt;}
.y187{bottom:877.093333pt;}
.ye8{bottom:880.133333pt;}
.y82{bottom:881.093333pt;}
.y13{bottom:888.613333pt;}
.y1dd{bottom:889.733333pt;}
.y186{bottom:891.653333pt;}
.y26d{bottom:891.813333pt;}
.ye7{bottom:895.493333pt;}
.y81{bottom:896.453333pt;}
.y12{bottom:903.333333pt;}
.y173{bottom:906.053333pt;}
.y11d{bottom:910.853333pt;}
.y80{bottom:911.813333pt;}
.y11{bottom:921.733333pt;}
.y135{bottom:926.213333pt;}
.y7f{bottom:927.173333pt;}
.y180{bottom:930.373333pt;}
.y10{bottom:940.133333pt;}
.y134{bottom:941.573333pt;}
.y7e{bottom:942.533333pt;}
.y17f{bottom:944.773333pt;}
.y133{bottom:956.933333pt;}
.y7d{bottom:957.893333pt;}
.yf{bottom:958.533333pt;}
.y17e{bottom:959.333333pt;}
.y132{bottom:972.133333pt;}
.y7c{bottom:973.093333pt;}
.y17d{bottom:973.733333pt;}
.ye{bottom:975.653333pt;}
.y131{bottom:987.493333pt;}
.y17c{bottom:988.133333pt;}
.yd{bottom:988.453333pt;}
.y17b{bottom:1002.693333pt;}
.y130{bottom:1002.853333pt;}
.yc{bottom:1003.813333pt;}
.y172{bottom:1017.093333pt;}
.y12f{bottom:1018.213333pt;}
.yb{bottom:1019.173333pt;}
.y171{bottom:1031.680000pt;}
.y12e{bottom:1033.600000pt;}
.ya{bottom:1034.560000pt;}
.y7b{bottom:1053.280000pt;}
.y5{bottom:1055.840000pt;}
.y1{bottom:1066.560000pt;}
.y78{bottom:1066.720000pt;}
.h29{height:5.025000pt;}
.h3e{height:5.092500pt;}
.h35{height:12.160000pt;}
.h39{height:12.160133pt;}
.h3a{height:12.320000pt;}
.h24{height:13.760000pt;}
.h27{height:13.792000pt;}
.h23{height:13.920000pt;}
.h2b{height:13.952000pt;}
.h2a{height:15.360000pt;}
.h16{height:15.703125pt;}
.h6{height:15.914062pt;}
.h1b{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:19.040000pt;}
.h3c{height:20.728125pt;}
.h2d{height:23.680000pt;}
.h4{height:24.187500pt;}
.h15{height:26.027500pt;}
.h2e{height:26.381250pt;}
.h33{height:27.520000pt;}
.h32{height:27.552000pt;}
.h30{height:27.680000pt;}
.h20{height:28.320000pt;}
.h3d{height:28.960000pt;}
.h3{height:29.343750pt;}
.h14{height:30.595000pt;}
.h34{height:31.406250pt;}
.h1d{height:32.411250pt;}
.h21{height:33.656250pt;}
.h11{height:36.413125pt;}
.h10{height:36.431250pt;}
.h18{height:37.246250pt;}
.h36{height:42.063437pt;}
.h5{height:42.084375pt;}
.h38{height:42.649687pt;}
.hb{height:43.215000pt;}
.h8{height:44.505000pt;}
.h17{height:44.596875pt;}
.h13{height:47.085938pt;}
.h22{height:47.109375pt;}
.he{height:48.375000pt;}
.h3b{height:49.152000pt;}
.hf{height:52.108438pt;}
.ha{height:52.134375pt;}
.h1e{height:52.834688pt;}
.h12{height:53.535000pt;}
.h1c{height:53.992500pt;}
.h1f{height:54.598989pt;}
.hd{height:54.812500pt;}
.h9{height:58.563750pt;}
.h37{height:61.440000pt;}
.hc{height:64.500000pt;}
.h19{height:64.992000pt;}
.h31{height:68.960000pt;}
.h2f{height:97.280000pt;}
.h25{height:100.480000pt;}
.h28{height:100.640000pt;}
.h26{height:100.672000pt;}
.h2c{height:110.400000pt;}
.h1a{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.wd{width:18.880000pt;}
.w7{width:63.072000pt;}
.w1e{width:65.280000pt;}
.w1c{width:65.440000pt;}
.w1d{width:65.472000pt;}
.w23{width:75.520000pt;}
.w12{width:82.592000pt;}
.w15{width:83.040000pt;}
.w1a{width:84.512000pt;}
.w13{width:91.840000pt;}
.w14{width:91.872000pt;}
.w17{width:92.000000pt;}
.w18{width:92.032000pt;}
.wf{width:93.120000pt;}
.w19{width:121.920000pt;}
.w20{width:140.960000pt;}
.w21{width:150.746667pt;}
.w10{width:157.786667pt;}
.w16{width:158.106667pt;}
.w1f{width:160.026667pt;}
.wc{width:188.986667pt;}
.w2{width:189.146667pt;}
.wa{width:198.426667pt;}
.w9{width:203.066667pt;}
.w8{width:203.226667pt;}
.w11{width:351.266667pt;}
.w1b{width:395.746667pt;}
.w4{width:397.026667pt;}
.we{width:400.706667pt;}
.w24{width:529.373333pt;}
.w6{width:604.733333pt;}
.w22{width:606.653333pt;}
.wb{width:608.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x56{left:1.760000pt;}
.x2{left:7.200000pt;}
.x4{left:8.160000pt;}
.x1e{left:9.600000pt;}
.x25{left:11.040000pt;}
.x42{left:12.800000pt;}
.x3d{left:13.920000pt;}
.x2a{left:15.840000pt;}
.x46{left:17.760000pt;}
.x4d{left:19.040000pt;}
.x45{left:20.640000pt;}
.x29{left:21.600000pt;}
.x3f{left:24.960000pt;}
.x36{left:27.680000pt;}
.x6{left:29.280000pt;}
.x26{left:32.800000pt;}
.x2e{left:33.920000pt;}
.x34{left:36.640000pt;}
.x33{left:38.240000pt;}
.x3a{left:42.560000pt;}
.x31{left:43.514667pt;}
.x35{left:45.920000pt;}
.x4c{left:46.880000pt;}
.x55{left:48.954667pt;}
.x38{left:52.000000pt;}
.x2b{left:53.280000pt;}
.x37{left:57.920000pt;}
.x20{left:62.880000pt;}
.x4a{left:64.474667pt;}
.x4f{left:67.520000pt;}
.x50{left:72.506667pt;}
.x40{left:74.720000pt;}
.x32{left:75.880000pt;}
.x4e{left:76.954667pt;}
.x23{left:92.672000pt;}
.x1{left:94.432000pt;}
.x57{left:101.792000pt;}
.x51{left:104.826667pt;}
.xa{left:106.911988pt;}
.x2c{left:110.106667pt;}
.x1a{left:113.471988pt;}
.x9{left:117.151988pt;}
.x53{left:118.431988pt;}
.x27{left:121.151988pt;}
.xf{left:132.991988pt;}
.x49{left:138.746655pt;}
.x54{left:142.106655pt;}
.xe{left:152.346655pt;}
.x28{left:153.306655pt;}
.x48{left:165.466655pt;}
.x58{left:177.306667pt;}
.x3b{left:185.946655pt;}
.xb{left:188.666655pt;}
.x3e{left:217.786667pt;}
.x10{left:225.786655pt;}
.x3c{left:228.506655pt;}
.x11{left:248.346655pt;}
.xc{left:254.946655pt;}
.x13{left:282.306655pt;}
.x3{left:283.586667pt;}
.x8{left:291.554667pt;}
.x22{left:294.754667pt;}
.x1f{left:297.826667pt;}
.x24{left:300.546667pt;}
.x5{left:302.306667pt;}
.x14{left:346.786655pt;}
.x41{left:369.026667pt;}
.x52{left:372.066655pt;}
.x12{left:387.266655pt;}
.xd{left:396.866655pt;}
.x1c{left:408.226655pt;}
.x1d{left:427.133322pt;}
.x2d{left:430.653333pt;}
.x43{left:435.133333pt;}
.x39{left:458.461333pt;}
.x1b{left:460.093322pt;}
.x21{left:500.893333pt;}
.x2f{left:523.133333pt;}
.x15{left:530.653322pt;}
.x16{left:540.413322pt;}
.x18{left:542.973322pt;}
.x4b{left:547.933333pt;}
.x44{left:567.293333pt;}
.x17{left:574.493322pt;}
.x19{left:587.773322pt;}
.x30{left:615.653333pt;}
.x47{left:633.413333pt;}
.x7{left:699.333322pt;}
}




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