
    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_654380ba11e588d1e307209c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_88f68b2810126da6d8d70349.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_fb8b4944e677d1357329768f.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_a6cb4984309b2cfc27b483d0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dbfd8f32aeb53dccb6fed907.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_4fcd392d41972d33387a0897.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_00461a759249c970573b1d9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0993f11838cb054ee65d8cfc.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_2d3ff9290d7879903af0af01.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.097168;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_3d3422313da9acf43f736952.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.133789;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_8e71063dc865f77eb8a5f303.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_0e455c437539b3e12a8c87de.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_ffa6509eeebc879be2da2b9d.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);}
.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);}
.v1{vertical-align:-77.040000px;}
.v2{vertical-align:-71.280000px;}
.v3{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls49{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.450600px;}
.ls22{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.313800px;}
.lsc{letter-spacing:-0.308400px;}
.ls15{letter-spacing:-0.265200px;}
.lsf{letter-spacing:-0.181200px;}
.ls48{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.053280px;}
.ls47{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.018000px;}
.ls42{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls3e{letter-spacing:0.106800px;}
.ls40{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls37{letter-spacing:0.149760px;}
.ls21{letter-spacing:0.155400px;}
.lsa{letter-spacing:0.156000px;}
.ls11{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.210240px;}
.ls27{letter-spacing:0.234000px;}
.ls2c{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls4a{letter-spacing:0.269400px;}
.ls45{letter-spacing:0.270000px;}
.ls39{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.468000px;}
.ls43{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.900000px;}
.ls35{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.800000px;}
.ls26{letter-spacing:2.340000px;}
.ls25{letter-spacing:3.060000px;}
.ls1b{letter-spacing:3.780000px;}
.ls38{letter-spacing:4.500000px;}
.ls14{letter-spacing:5.220000px;}
.ls1a{letter-spacing:5.940000px;}
.ls19{letter-spacing:6.060000px;}
.ls20{letter-spacing:6.660000px;}
.ls9{letter-spacing:6.780000px;}
.ls1c{letter-spacing:7.380000px;}
.ls2a{letter-spacing:8.100000px;}
.ls17{letter-spacing:8.586720px;}
.ls32{letter-spacing:8.820000px;}
.ls13{letter-spacing:9.540000px;}
.ls2e{letter-spacing:10.260000px;}
.ls1d{letter-spacing:10.980000px;}
.ls36{letter-spacing:11.700000px;}
.ls23{letter-spacing:12.420000px;}
.ls6{letter-spacing:13.860000px;}
.ls34{letter-spacing:15.066720px;}
.ls3d{letter-spacing:15.300000px;}
.ls29{letter-spacing:16.740000px;}
.ls31{letter-spacing:17.460000px;}
.ls33{letter-spacing:21.960000px;}
.ls12{letter-spacing:22.500000px;}
.ls3{letter-spacing:23.220000px;}
.ls30{letter-spacing:24.660000px;}
.ls2d{letter-spacing:28.260000px;}
.ls8{letter-spacing:28.980000px;}
.ls3a{letter-spacing:36.300000px;}
.ls2f{letter-spacing:44.562720px;}
.ls1e{letter-spacing:47.700000px;}
.ls3b{letter-spacing:59.940000px;}
.ls3c{letter-spacing:63.540000px;}
.ls18{letter-spacing:616.656000px;}
.ls4{letter-spacing:971.580000px;}
.ls24{letter-spacing:1094.040000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.ws17{word-spacing:-54.468000px;}
.ws16{word-spacing:-54.270000px;}
.ws15{word-spacing:-54.000000px;}
.wsf{word-spacing:-16.119240px;}
.ws12{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.655440px;}
.ws3{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.674800px;}
.ws14{word-spacing:-14.479800px;}
.ws18{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.734000px;}
.ws1e{word-spacing:-13.680000px;}
.ws1d{word-spacing:-13.626000px;}
.ws19{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.482000px;}
.ws1c{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.140000px;}
.ws20{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.878800px;}
.ws6{word-spacing:-11.609400px;}
.ws0{word-spacing:-10.064160px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:0.504000px;}
.wsd{word-spacing:1.206000px;}
._5{margin-left:-3.836400px;}
._2{margin-left:-2.640480px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._9{width:3.274800px;}
._13{width:4.558560px;}
._14{width:5.607600px;}
._8{width:6.687600px;}
._4{width:8.056080px;}
._3{width:9.133680px;}
._a{width:11.046960px;}
._d{width:12.241920px;}
._7{width:13.634160px;}
._6{width:15.177840px;}
._12{width:16.447920px;}
._10{width:17.688960px;}
._11{width:18.898080px;}
._f{width:20.033520px;}
._e{width:21.832320px;}
._17{width:23.148720px;}
._20{width:24.280080px;}
._1d{width:25.320480px;}
._15{width:26.652480px;}
._c{width:28.270080px;}
._b{width:29.501040px;}
._16{width:31.075200px;}
._1a{width:32.646720px;}
._19{width:34.072080px;}
._1b{width:35.557200px;}
._1c{width:37.469520px;}
._18{width:38.784240px;}
._1f{width:40.508400px;}
._1e{width:41.533200px;}
._25{width:43.206480px;}
._29{width:45.628320px;}
._22{width:46.776000px;}
._21{width:48.166560px;}
._23{width:49.674480px;}
._24{width:50.975280px;}
._26{width:60.297840px;}
._27{width:63.823680px;}
._28{width:65.186640px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsc{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fsa{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsb{font-size:48.384000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.520000px;}
.y9e{bottom:2.880000px;}
.y139{bottom:3.060000px;}
.y3{bottom:4.320000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.y148{bottom:10.620000px;}
.y13f{bottom:10.665000px;}
.y13a{bottom:10.800000px;}
.y4d{bottom:11.880000px;}
.y4c{bottom:12.060000px;}
.y1f3{bottom:16.380000px;}
.y4b{bottom:17.280000px;}
.ya5{bottom:18.360000px;}
.ya1{bottom:18.405000px;}
.yaa{bottom:18.540000px;}
.y146{bottom:26.100000px;}
.y13e{bottom:26.145000px;}
.y13c{bottom:26.280000px;}
.yb9{bottom:29.370000px;}
.ye2{bottom:32.760000px;}
.y9{bottom:32.940000px;}
.ya4{bottom:33.840000px;}
.ya0{bottom:33.885000px;}
.ya9{bottom:34.020000px;}
.y1e1{bottom:34.065000px;}
.y14b{bottom:41.580000px;}
.y145{bottom:41.760000px;}
.ye1{bottom:45.180000px;}
.y7{bottom:48.600000px;}
.yb8{bottom:48.810000px;}
.ya3{bottom:49.320000px;}
.y141{bottom:49.500000px;}
.y1e0{bottom:49.545000px;}
.y144{bottom:57.240000px;}
.ye0{bottom:57.600000px;}
.yda{bottom:58.245000px;}
.y143{bottom:64.980000px;}
.ydf{bottom:70.020000px;}
.yd9{bottom:70.665000px;}
.y147{bottom:72.720000px;}
.y6{bottom:72.900000px;}
.y149{bottom:80.460000px;}
.yde{bottom:82.440000px;}
.yd8{bottom:83.085000px;}
.y137{bottom:90.000000px;}
.y180{bottom:90.540000px;}
.y1f4{bottom:90.720000px;}
.y1f2{bottom:91.980000px;}
.y87{bottom:93.420000px;}
.y11f{bottom:94.320000px;}
.ydd{bottom:94.860000px;}
.yb2{bottom:95.580000px;}
.yb7{bottom:99.030000px;}
.y49{bottom:99.540000px;}
.yf3{bottom:99.645000px;}
.y1da{bottom:105.480000px;}
.yf5{bottom:105.870000px;}
.y136{bottom:107.100000px;}
.ydc{bottom:107.280000px;}
.y17f{bottom:107.820000px;}
.y86{bottom:110.700000px;}
.y11e{bottom:111.420000px;}
.yf2{bottom:112.065000px;}
.yb1{bottom:112.860000px;}
.y48{bottom:116.820000px;}
.yf4{bottom:118.290000px;}
.yb6{bottom:118.470000px;}
.ydb{bottom:119.700000px;}
.yd6{bottom:119.880000px;}
.y160{bottom:120.960000px;}
.y1d9{bottom:122.760000px;}
.y135{bottom:124.380000px;}
.yf1{bottom:124.485000px;}
.y17e{bottom:125.100000px;}
.y85{bottom:127.980000px;}
.y11d{bottom:128.700000px;}
.yb0{bottom:130.140000px;}
.y1f1{bottom:130.500000px;}
.y47{bottom:134.100000px;}
.y1b5{bottom:135.540000px;}
.yd5{bottom:137.160000px;}
.y15f{bottom:138.240000px;}
.y1d8{bottom:140.040000px;}
.y134{bottom:141.660000px;}
.y17d{bottom:142.200000px;}
.y84{bottom:145.260000px;}
.y11c{bottom:145.980000px;}
.yaf{bottom:147.420000px;}
.y1f0{bottom:147.780000px;}
.y46{bottom:151.380000px;}
.y1b4{bottom:152.640000px;}
.yd4{bottom:154.260000px;}
.y15e{bottom:155.520000px;}
.y1d7{bottom:157.140000px;}
.y133{bottom:158.940000px;}
.y17c{bottom:159.480000px;}
.y83{bottom:162.540000px;}
.y11b{bottom:163.260000px;}
.yae{bottom:164.700000px;}
.y1ef{bottom:164.880000px;}
.y45{bottom:168.660000px;}
.y1b3{bottom:169.920000px;}
.yb5{bottom:170.745000px;}
.yd3{bottom:171.540000px;}
.y15d{bottom:172.800000px;}
.y1d6{bottom:174.420000px;}
.y132{bottom:176.220000px;}
.y17b{bottom:176.760000px;}
.y82{bottom:179.640000px;}
.y11a{bottom:180.540000px;}
.yad{bottom:181.800000px;}
.y1ee{bottom:182.160000px;}
.y1b2{bottom:187.230000px;}
.yd2{bottom:188.850000px;}
.y15c{bottom:190.110000px;}
.yb4{bottom:190.185000px;}
.y44{bottom:190.290000px;}
.y1d5{bottom:191.730000px;}
.y131{bottom:193.530000px;}
.y17a{bottom:194.070000px;}
.y81{bottom:196.950000px;}
.y119{bottom:197.670000px;}
.yac{bottom:199.110000px;}
.y1ed{bottom:199.470000px;}
.y1b1{bottom:204.510000px;}
.yf0{bottom:204.735000px;}
.yd1{bottom:206.130000px;}
.y15b{bottom:207.210000px;}
.y1d4{bottom:209.010000px;}
.y130{bottom:210.630000px;}
.yed{bottom:210.960000px;}
.y179{bottom:211.350000px;}
.y43{bottom:212.070000px;}
.y80{bottom:214.230000px;}
.y118{bottom:214.950000px;}
.yab{bottom:216.390000px;}
.y1ec{bottom:216.750000px;}
.yef{bottom:217.155000px;}
.y1b0{bottom:221.790000px;}
.yec{bottom:223.380000px;}
.yd0{bottom:223.410000px;}
.y15a{bottom:224.490000px;}
.y1d3{bottom:226.290000px;}
.y12f{bottom:227.910000px;}
.y178{bottom:228.630000px;}
.y42{bottom:229.350000px;}
.yee{bottom:229.575000px;}
.ya8{bottom:231.150000px;}
.y7f{bottom:231.510000px;}
.y117{bottom:232.230000px;}
.y1eb{bottom:234.030000px;}
.y1af{bottom:239.070000px;}
.ycf{bottom:240.690000px;}
.y159{bottom:241.770000px;}
.y1d2{bottom:243.570000px;}
.y12e{bottom:245.190000px;}
.y177{bottom:245.730000px;}
.y41{bottom:246.630000px;}
.y7e{bottom:248.790000px;}
.y116{bottom:249.510000px;}
.ye7{bottom:250.995000px;}
.y1ea{bottom:251.310000px;}
.y1ae{bottom:256.170000px;}
.yce{bottom:257.790000px;}
.y158{bottom:259.050000px;}
.y1d1{bottom:260.670000px;}
.y176{bottom:262.290000px;}
.y12d{bottom:262.470000px;}
.ye6{bottom:263.445000px;}
.y40{bottom:263.910000px;}
.yeb{bottom:265.500000px;}
.y7d{bottom:266.070000px;}
.y115{bottom:266.790000px;}
.y1e9{bottom:268.410000px;}
.y1ad{bottom:273.450000px;}
.ycd{bottom:275.070000px;}
.ye5{bottom:275.865000px;}
.y157{bottom:276.330000px;}
.y175{bottom:276.870000px;}
.yea{bottom:277.920000px;}
.y1d0{bottom:277.950000px;}
.ya7{bottom:278.490000px;}
.y12c{bottom:279.750000px;}
.y3f{bottom:281.190000px;}
.y7c{bottom:283.170000px;}
.y114{bottom:284.070000px;}
.y1e8{bottom:285.690000px;}
.ye4{bottom:288.285000px;}
.ye9{bottom:290.340000px;}
.y1ac{bottom:290.730000px;}
.ycc{bottom:292.350000px;}
.y156{bottom:293.430000px;}
.y174{bottom:294.150000px;}
.y1cf{bottom:295.230000px;}
.y12b{bottom:296.850000px;}
.y3e{bottom:298.290000px;}
.y7b{bottom:300.450000px;}
.ye3{bottom:300.705000px;}
.y113{bottom:301.170000px;}
.ye8{bottom:302.760000px;}
.y1e7{bottom:302.970000px;}
.y1ab{bottom:308.010000px;}
.ycb{bottom:309.630000px;}
.ya6{bottom:310.350000px;}
.y155{bottom:310.710000px;}
.y173{bottom:311.250000px;}
.y1ce{bottom:312.510000px;}
.y12a{bottom:314.130000px;}
.y3d{bottom:315.570000px;}
.y7a{bottom:317.730000px;}
.y112{bottom:318.450000px;}
.y1e6{bottom:320.250000px;}
.y172{bottom:325.290000px;}
.yca{bottom:326.910000px;}
.y154{bottom:327.990000px;}
.y1cd{bottom:329.790000px;}
.y129{bottom:331.410000px;}
.y3c{bottom:332.850000px;}
.y79{bottom:335.010000px;}
.y111{bottom:335.730000px;}
.y1e5{bottom:337.530000px;}
.y1aa{bottom:342.570000px;}
.yc9{bottom:344.190000px;}
.y153{bottom:345.270000px;}
.y1cc{bottom:347.070000px;}
.y128{bottom:348.690000px;}
.y3b{bottom:350.130000px;}
.y78{bottom:352.290000px;}
.y110{bottom:353.010000px;}
.y1e4{bottom:354.630000px;}
.ya2{bottom:357.690000px;}
.y1a9{bottom:359.670000px;}
.yc8{bottom:361.290000px;}
.y152{bottom:362.550000px;}
.y1cb{bottom:364.170000px;}
.y4a{bottom:364.350000px;}
.y127{bottom:365.970000px;}
.y3a{bottom:367.410000px;}
.y77{bottom:369.570000px;}
.y10f{bottom:370.290000px;}
.y1e3{bottom:371.910000px;}
.y1a8{bottom:376.950000px;}
.yc7{bottom:378.570000px;}
.y151{bottom:379.830000px;}
.y1ca{bottom:381.450000px;}
.y126{bottom:383.250000px;}
.y39{bottom:384.510000px;}
.y76{bottom:386.670000px;}
.y10e{bottom:387.570000px;}
.y1e2{bottom:389.190000px;}
.y1a7{bottom:394.230000px;}
.yc6{bottom:395.850000px;}
.y150{bottom:396.930000px;}
.y1c9{bottom:398.730000px;}
.y125{bottom:400.350000px;}
.y38{bottom:401.790000px;}
.y1df{bottom:403.230000px;}
.y75{bottom:403.950000px;}
.y10d{bottom:404.670000px;}
.y1a6{bottom:411.510000px;}
.yc5{bottom:413.130000px;}
.y14f{bottom:414.210000px;}
.y1c8{bottom:416.010000px;}
.y124{bottom:417.630000px;}
.y37{bottom:419.070000px;}
.y9f{bottom:420.510000px;}
.y74{bottom:421.230000px;}
.y10c{bottom:421.950000px;}
.y14e{bottom:429.015000px;}
.yc4{bottom:430.455000px;}
.y1c7{bottom:433.335000px;}
.y36{bottom:435.675000px;}
.y123{bottom:436.035000px;}
.y10b{bottom:439.275000px;}
.y73{bottom:443.055000px;}
.yc3{bottom:447.735000px;}
.y1c6{bottom:450.435000px;}
.y35{bottom:450.615000px;}
.y122{bottom:454.395000px;}
.y10a{bottom:456.555000px;}
.y34{bottom:464.475000px;}
.y72{bottom:464.835000px;}
.y1de{bottom:465.375000px;}
.y1a5{bottom:466.275000px;}
.y1c5{bottom:467.715000px;}
.y9d{bottom:467.895000px;}
.y121{bottom:471.675000px;}
.y109{bottom:473.835000px;}
.y33{bottom:478.155000px;}
.y1dd{bottom:480.855000px;}
.y71{bottom:481.935000px;}
.yc2{bottom:482.115000px;}
.y1c4{bottom:484.995000px;}
.y120{bottom:490.035000px;}
.y108{bottom:490.935000px;}
.y32{bottom:492.015000px;}
.y1dc{bottom:496.335000px;}
.y70{bottom:499.215000px;}
.yc1{bottom:499.395000px;}
.y1c3{bottom:502.275000px;}
.y31{bottom:505.875000px;}
.y14d{bottom:507.495000px;}
.y107{bottom:508.215000px;}
.y6f{bottom:516.495000px;}
.yc0{bottom:516.675000px;}
.y30{bottom:519.555000px;}
.y1a4{bottom:520.995000px;}
.y106{bottom:525.495000px;}
.y2f{bottom:533.415000px;}
.y6e{bottom:533.775000px;}
.ybf{bottom:533.955000px;}
.y9c{bottom:536.835000px;}
.y1a3{bottom:538.275000px;}
.y105{bottom:542.775000px;}
.y2e{bottom:547.275000px;}
.y6d{bottom:551.055000px;}
.y1c2{bottom:553.935000px;}
.y9b{bottom:554.115000px;}
.y1a2{bottom:555.555000px;}
.y1db{bottom:558.435000px;}
.y104{bottom:560.055000px;}
.y2d{bottom:560.955000px;}
.y6c{bottom:568.335000px;}
.y1c1{bottom:571.215000px;}
.y9a{bottom:571.395000px;}
.y1a1{bottom:572.835000px;}
.y2c{bottom:574.815000px;}
.y103{bottom:577.335000px;}
.y6b{bottom:585.435000px;}
.ybe{bottom:585.615000px;}
.y14c{bottom:585.795000px;}
.y2b{bottom:588.495000px;}
.y1a0{bottom:589.935000px;}
.y102{bottom:594.435000px;}
.y2a{bottom:602.355000px;}
.y6a{bottom:602.715000px;}
.ybd{bottom:602.895000px;}
.y99{bottom:605.775000px;}
.y19f{bottom:607.215000px;}
.y101{bottom:611.715000px;}
.y29{bottom:616.215000px;}
.y69{bottom:619.995000px;}
.ybc{bottom:620.175000px;}
.y98{bottom:623.055000px;}
.y19e{bottom:624.495000px;}
.y100{bottom:628.995000px;}
.y28{bottom:629.895000px;}
.y68{bottom:637.275000px;}
.ybb{bottom:637.455000px;}
.y97{bottom:640.335000px;}
.y19d{bottom:641.775000px;}
.y27{bottom:643.755000px;}
.yff{bottom:646.275000px;}
.yba{bottom:651.315000px;}
.yd7{bottom:651.420000px;}
.y67{bottom:654.555000px;}
.y1c0{bottom:657.435000px;}
.y26{bottom:657.615000px;}
.y19c{bottom:659.055000px;}
.yfe{bottom:663.555000px;}
.y25{bottom:671.325000px;}
.y66{bottom:671.865000px;}
.y1bf{bottom:674.745000px;}
.y96{bottom:674.925000px;}
.y171{bottom:675.105000px;}
.y19b{bottom:676.365000px;}
.y14a{bottom:679.785000px;}
.yfd{bottom:680.865000px;}
.y24{bottom:685.185000px;}
.y65{bottom:688.965000px;}
.y170{bottom:689.685000px;}
.y95{bottom:692.025000px;}
.y19a{bottom:693.465000px;}
.yfc{bottom:697.965000px;}
.y23{bottom:699.045000px;}
.y64{bottom:706.245000px;}
.y16f{bottom:706.965000px;}
.y94{bottom:709.305000px;}
.y199{bottom:710.745000px;}
.y22{bottom:712.725000px;}
.yfb{bottom:715.245000px;}
.y63{bottom:723.525000px;}
.y16e{bottom:724.065000px;}
.y21{bottom:726.585000px;}
.y198{bottom:728.025000px;}
.yfa{bottom:732.525000px;}
.y20{bottom:740.445000px;}
.y62{bottom:740.805000px;}
.y16d{bottom:741.345000px;}
.y142{bottom:742.605000px;}
.y93{bottom:743.865000px;}
.y197{bottom:745.305000px;}
.yf9{bottom:749.805000px;}
.y1f{bottom:754.125000px;}
.y16c{bottom:757.905000px;}
.y61{bottom:758.085000px;}
.y1be{bottom:760.965000px;}
.y92{bottom:761.145000px;}
.y196{bottom:762.585000px;}
.yf8{bottom:767.085000px;}
.y1e{bottom:767.985000px;}
.y16b{bottom:772.485000px;}
.y60{bottom:775.365000px;}
.y91{bottom:778.245000px;}
.y195{bottom:779.865000px;}
.yf7{bottom:784.365000px;}
.y1d{bottom:785.085000px;}
.y16a{bottom:787.245000px;}
.y90{bottom:795.525000px;}
.y5f{bottom:796.965000px;}
.yf6{bottom:801.465000px;}
.y1c{bottom:802.365000px;}
.y8f{bottom:812.805000px;}
.y194{bottom:814.245000px;}
.y5e{bottom:818.745000px;}
.y169{bottom:818.925000px;}
.y1b{bottom:819.645000px;}
.y8e{bottom:830.085000px;}
.y193{bottom:831.525000px;}
.y168{bottom:835.305000px;}
.y5d{bottom:836.025000px;}
.y140{bottom:836.385000px;}
.y1a{bottom:836.925000px;}
.y8d{bottom:844.125000px;}
.yb3{bottom:844.200000px;}
.y1bd{bottom:847.185000px;}
.y192{bottom:848.805000px;}
.y5c{bottom:853.305000px;}
.y19{bottom:854.205000px;}
.y1bc{bottom:864.465000px;}
.y191{bottom:866.085000px;}
.y5b{bottom:870.585000px;}
.y18{bottom:871.305000px;}
.y1bb{bottom:881.745000px;}
.y167{bottom:882.645000px;}
.y190{bottom:883.185000px;}
.y5a{bottom:887.685000px;}
.y17{bottom:888.585000px;}
.y166{bottom:898.845000px;}
.y1ba{bottom:899.025000px;}
.y13d{bottom:899.385000px;}
.y18f{bottom:900.465000px;}
.y59{bottom:904.965000px;}
.y16{bottom:905.865000px;}
.y165{bottom:915.090000px;}
.y1b9{bottom:916.350000px;}
.y18e{bottom:917.790000px;}
.y58{bottom:922.290000px;}
.y15{bottom:923.190000px;}
.y164{bottom:931.470000px;}
.y1b8{bottom:933.630000px;}
.y18d{bottom:935.070000px;}
.y57{bottom:939.570000px;}
.y14{bottom:940.470000px;}
.y13b{bottom:946.590000px;}
.y1b7{bottom:950.730000px;}
.y18c{bottom:952.350000px;}
.y56{bottom:956.850000px;}
.y163{bottom:963.330000px;}
.y18b{bottom:969.630000px;}
.y55{bottom:974.130000px;}
.y13{bottom:975.570000px;}
.y18a{bottom:986.730000px;}
.y54{bottom:991.230000px;}
.y138{bottom:993.930000px;}
.y162{bottom:994.650000px;}
.y12{bottom:996.270000px;}
.y189{bottom:1004.010000px;}
.y1b6{bottom:1005.630000px;}
.y53{bottom:1008.510000px;}
.y161{bottom:1011.210000px;}
.y11{bottom:1016.070000px;}
.y188{bottom:1021.290000px;}
.y52{bottom:1025.790000px;}
.y10{bottom:1035.870000px;}
.y187{bottom:1038.570000px;}
.y51{bottom:1043.070000px;}
.yf{bottom:1055.670000px;}
.y186{bottom:1055.850000px;}
.y8c{bottom:1057.110000px;}
.y50{bottom:1060.350000px;}
.y185{bottom:1073.130000px;}
.y8b{bottom:1074.390000px;}
.y4f{bottom:1077.630000px;}
.y184{bottom:1090.230000px;}
.y8a{bottom:1092.570000px;}
.ye{bottom:1094.730000px;}
.y183{bottom:1107.510000px;}
.y89{bottom:1109.850000px;}
.yd{bottom:1112.010000px;}
.y182{bottom:1124.790000px;}
.y88{bottom:1128.210000px;}
.yc{bottom:1129.290000px;}
.y181{bottom:1142.070000px;}
.yb{bottom:1146.570000px;}
.ya{bottom:1163.880000px;}
.y5{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h33{height:5.653125px;}
.h19{height:15.480000px;}
.h2c{height:15.516000px;}
.h2b{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h16{height:30.209062px;}
.h1f{height:30.960000px;}
.h26{height:31.140000px;}
.h17{height:32.835938px;}
.h15{height:33.011719px;}
.h30{height:35.280000px;}
.h3{height:38.089687px;}
.h31{height:40.985156px;}
.h10{height:42.516211px;}
.h25{height:42.643125px;}
.h23{height:44.507812px;}
.h1e{height:46.440000px;}
.h1b{height:46.476000px;}
.h20{height:46.620000px;}
.h22{height:46.696289px;}
.hf{height:47.321367px;}
.h6{height:47.344922px;}
.h1c{height:47.592773px;}
.h32{height:48.616875px;}
.h9{height:50.068125px;}
.h11{height:52.669336px;}
.h2d{height:52.971680px;}
.h1a{height:52.998047px;}
.h2e{height:53.709961px;}
.he{height:58.621992px;}
.hb{height:58.651172px;}
.h12{height:60.226875px;}
.h4{height:60.741562px;}
.h18{height:61.423863px;}
.h1d{height:61.920000px;}
.h27{height:62.100000px;}
.h2f{height:62.136000px;}
.ha{height:65.884219px;}
.hc{height:69.660000px;}
.h13{height:70.956000px;}
.hd{height:72.562500px;}
.h2a{height:77.580000px;}
.h28{height:93.060000px;}
.h29{height:93.096000px;}
.h21{height:209.700000px;}
.h14{height:264.990234px;}
.h24{height:336.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.w17{width:63.360000px;}
.w15{width:73.980000px;}
.w16{width:74.016000px;}
.w1a{width:84.960000px;}
.w14{width:86.040000px;}
.we{width:120.600000px;}
.wf{width:126.576000px;}
.w11{width:126.720000px;}
.wc{width:126.900000px;}
.w10{width:137.196000px;}
.w3{width:157.530000px;}
.w12{width:164.910000px;}
.w18{width:176.970000px;}
.w13{width:200.730000px;}
.w8{width:228.990000px;}
.w4{width:253.110000px;}
.w2{width:269.670000px;}
.wa{width:434.415000px;}
.wd{width:551.265000px;}
.w1b{width:595.545000px;}
.w6{width:680.325000px;}
.w19{width:682.485000px;}
.wb{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x56{left:1.980000px;}
.x59{left:5.220000px;}
.x2{left:8.100000px;}
.x16{left:9.360000px;}
.x46{left:12.060000px;}
.x48{left:14.040000px;}
.x4d{left:28.260000px;}
.x4e{left:29.520000px;}
.x51{left:31.140000px;}
.x3d{left:32.220000px;}
.x4c{left:33.660000px;}
.x4{left:35.640000px;}
.x21{left:37.080000px;}
.x40{left:39.420000px;}
.x3c{left:40.860000px;}
.x3e{left:45.720000px;}
.x6{left:50.040000px;}
.x55{left:55.074000px;}
.x50{left:57.420000px;}
.x42{left:59.445000px;}
.x4f{left:64.485000px;}
.x44{left:73.974000px;}
.x15{left:97.236000px;}
.x17{left:104.256000px;}
.x1{left:106.416000px;}
.x57{left:114.516000px;}
.xb{left:119.375987px;}
.x43{left:121.715987px;}
.x14{left:127.655987px;}
.x27{left:132.515987px;}
.x1a{left:145.650000px;}
.x2c{left:146.843987px;}
.x2d{left:153.689987px;}
.x13{left:159.149987px;}
.x12{left:162.929987px;}
.xc{left:172.109987px;}
.x30{left:178.379987px;}
.x28{left:180.029987px;}
.x31{left:185.219987px;}
.x25{left:187.949987px;}
.x24{left:189.149987px;}
.x58{left:199.470000px;}
.x9{left:206.129987px;}
.x23{left:229.365000px;}
.x22{left:234.750000px;}
.x1f{left:237.449987px;}
.x29{left:263.549987px;}
.x1b{left:266.970000px;}
.x20{left:280.109987px;}
.x53{left:285.734987px;}
.x45{left:308.595000px;}
.x3b{left:316.154987px;}
.x8{left:331.059000px;}
.x18{left:333.255000px;}
.x1c{left:335.199000px;}
.x19{left:354.495000px;}
.x33{left:355.574987px;}
.x3a{left:360.074987px;}
.x32{left:367.634987px;}
.x3{left:376.095000px;}
.x47{left:395.355000px;}
.x54{left:418.574987px;}
.xd{left:442.874987px;}
.xa{left:446.474987px;}
.x1e{left:448.094987px;}
.x39{left:456.509987px;}
.x37{left:460.649987px;}
.x35{left:465.149987px;}
.x49{left:470.235000px;}
.x38{left:474.689987px;}
.x34{left:475.769987px;}
.x36{left:479.549987px;}
.x3f{left:493.665000px;}
.x5{left:533.625000px;}
.x4a{left:544.965000px;}
.x2e{left:565.229987px;}
.x2f{left:572.069987px;}
.x2a{left:577.949987px;}
.x2b{left:584.789987px;}
.xe{left:595.364987px;}
.xf{left:599.684987px;}
.x4b{left:609.045000px;}
.x41{left:621.105000px;}
.x10{left:653.864987px;}
.x11{left:661.244987px;}
.x52{left:714.389987px;}
.x1d{left:757.409987px;}
.x26{left:770.549987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v2{vertical-align:-63.360000pt;}
.v3{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls49{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.400533pt;}
.ls22{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.278933pt;}
.lsc{letter-spacing:-0.274133pt;}
.ls15{letter-spacing:-0.235733pt;}
.lsf{letter-spacing:-0.161067pt;}
.ls48{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls47{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.016000pt;}
.ls42{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls3e{letter-spacing:0.094933pt;}
.ls40{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls37{letter-spacing:0.133120pt;}
.ls21{letter-spacing:0.138133pt;}
.lsa{letter-spacing:0.138667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.186880pt;}
.ls27{letter-spacing:0.208000pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls4a{letter-spacing:0.239467pt;}
.ls45{letter-spacing:0.240000pt;}
.ls39{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.416000pt;}
.ls43{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.600000pt;}
.ls26{letter-spacing:2.080000pt;}
.ls25{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:3.360000pt;}
.ls38{letter-spacing:4.000000pt;}
.ls14{letter-spacing:4.640000pt;}
.ls1a{letter-spacing:5.280000pt;}
.ls19{letter-spacing:5.386667pt;}
.ls20{letter-spacing:5.920000pt;}
.ls9{letter-spacing:6.026667pt;}
.ls1c{letter-spacing:6.560000pt;}
.ls2a{letter-spacing:7.200000pt;}
.ls17{letter-spacing:7.632640pt;}
.ls32{letter-spacing:7.840000pt;}
.ls13{letter-spacing:8.480000pt;}
.ls2e{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:9.760000pt;}
.ls36{letter-spacing:10.400000pt;}
.ls23{letter-spacing:11.040000pt;}
.ls6{letter-spacing:12.320000pt;}
.ls34{letter-spacing:13.392640pt;}
.ls3d{letter-spacing:13.600000pt;}
.ls29{letter-spacing:14.880000pt;}
.ls31{letter-spacing:15.520000pt;}
.ls33{letter-spacing:19.520000pt;}
.ls12{letter-spacing:20.000000pt;}
.ls3{letter-spacing:20.640000pt;}
.ls30{letter-spacing:21.920000pt;}
.ls2d{letter-spacing:25.120000pt;}
.ls8{letter-spacing:25.760000pt;}
.ls3a{letter-spacing:32.266667pt;}
.ls2f{letter-spacing:39.611307pt;}
.ls1e{letter-spacing:42.400000pt;}
.ls3b{letter-spacing:53.280000pt;}
.ls3c{letter-spacing:56.480000pt;}
.ls18{letter-spacing:548.138667pt;}
.ls4{letter-spacing:863.626667pt;}
.ls24{letter-spacing:972.480000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws17{word-spacing:-48.416000pt;}
.ws16{word-spacing:-48.240000pt;}
.ws15{word-spacing:-48.000000pt;}
.wsf{word-spacing:-14.328213pt;}
.ws12{word-spacing:-14.240000pt;}
.ws1{word-spacing:-13.915947pt;}
.ws3{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.044267pt;}
.ws14{word-spacing:-12.870933pt;}
.ws18{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.208000pt;}
.ws1e{word-spacing:-12.160000pt;}
.ws1d{word-spacing:-12.112000pt;}
.ws19{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.984000pt;}
.ws1c{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws20{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.558933pt;}
.ws6{word-spacing:-10.319467pt;}
.ws0{word-spacing:-8.945920pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:0.448000pt;}
.wsd{word-spacing:1.072000pt;}
._5{margin-left:-3.410133pt;}
._2{margin-left:-2.347093pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._9{width:2.910933pt;}
._13{width:4.052053pt;}
._14{width:4.984533pt;}
._8{width:5.944533pt;}
._4{width:7.160960pt;}
._3{width:8.118827pt;}
._a{width:9.819520pt;}
._d{width:10.881707pt;}
._7{width:12.119253pt;}
._6{width:13.491413pt;}
._12{width:14.620373pt;}
._10{width:15.723520pt;}
._11{width:16.798293pt;}
._f{width:17.807573pt;}
._e{width:19.406507pt;}
._17{width:20.576640pt;}
._20{width:21.582293pt;}
._1d{width:22.507093pt;}
._15{width:23.691093pt;}
._c{width:25.128960pt;}
._b{width:26.223147pt;}
._16{width:27.622400pt;}
._1a{width:29.019307pt;}
._19{width:30.286293pt;}
._1b{width:31.606400pt;}
._1c{width:33.306240pt;}
._18{width:34.474880pt;}
._1f{width:36.007467pt;}
._1e{width:36.918400pt;}
._25{width:38.405760pt;}
._29{width:40.558507pt;}
._22{width:41.578667pt;}
._21{width:42.814720pt;}
._23{width:44.155093pt;}
._24{width:45.311360pt;}
._26{width:53.598080pt;}
._27{width:56.732160pt;}
._28{width:57.943680pt;}
.fsc{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fsa{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsb{font-size:43.008000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.240000pt;}
.y9e{bottom:2.560000pt;}
.y139{bottom:2.720000pt;}
.y3{bottom:3.840000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.y148{bottom:9.440000pt;}
.y13f{bottom:9.480000pt;}
.y13a{bottom:9.600000pt;}
.y4d{bottom:10.560000pt;}
.y4c{bottom:10.720000pt;}
.y1f3{bottom:14.560000pt;}
.y4b{bottom:15.360000pt;}
.ya5{bottom:16.320000pt;}
.ya1{bottom:16.360000pt;}
.yaa{bottom:16.480000pt;}
.y146{bottom:23.200000pt;}
.y13e{bottom:23.240000pt;}
.y13c{bottom:23.360000pt;}
.yb9{bottom:26.106667pt;}
.ye2{bottom:29.120000pt;}
.y9{bottom:29.280000pt;}
.ya4{bottom:30.080000pt;}
.ya0{bottom:30.120000pt;}
.ya9{bottom:30.240000pt;}
.y1e1{bottom:30.280000pt;}
.y14b{bottom:36.960000pt;}
.y145{bottom:37.120000pt;}
.ye1{bottom:40.160000pt;}
.y7{bottom:43.200000pt;}
.yb8{bottom:43.386667pt;}
.ya3{bottom:43.840000pt;}
.y141{bottom:44.000000pt;}
.y1e0{bottom:44.040000pt;}
.y144{bottom:50.880000pt;}
.ye0{bottom:51.200000pt;}
.yda{bottom:51.773333pt;}
.y143{bottom:57.760000pt;}
.ydf{bottom:62.240000pt;}
.yd9{bottom:62.813333pt;}
.y147{bottom:64.640000pt;}
.y6{bottom:64.800000pt;}
.y149{bottom:71.520000pt;}
.yde{bottom:73.280000pt;}
.yd8{bottom:73.853333pt;}
.y137{bottom:80.000000pt;}
.y180{bottom:80.480000pt;}
.y1f4{bottom:80.640000pt;}
.y1f2{bottom:81.760000pt;}
.y87{bottom:83.040000pt;}
.y11f{bottom:83.840000pt;}
.ydd{bottom:84.320000pt;}
.yb2{bottom:84.960000pt;}
.yb7{bottom:88.026667pt;}
.y49{bottom:88.480000pt;}
.yf3{bottom:88.573333pt;}
.y1da{bottom:93.760000pt;}
.yf5{bottom:94.106667pt;}
.y136{bottom:95.200000pt;}
.ydc{bottom:95.360000pt;}
.y17f{bottom:95.840000pt;}
.y86{bottom:98.400000pt;}
.y11e{bottom:99.040000pt;}
.yf2{bottom:99.613333pt;}
.yb1{bottom:100.320000pt;}
.y48{bottom:103.840000pt;}
.yf4{bottom:105.146667pt;}
.yb6{bottom:105.306667pt;}
.ydb{bottom:106.400000pt;}
.yd6{bottom:106.560000pt;}
.y160{bottom:107.520000pt;}
.y1d9{bottom:109.120000pt;}
.y135{bottom:110.560000pt;}
.yf1{bottom:110.653333pt;}
.y17e{bottom:111.200000pt;}
.y85{bottom:113.760000pt;}
.y11d{bottom:114.400000pt;}
.yb0{bottom:115.680000pt;}
.y1f1{bottom:116.000000pt;}
.y47{bottom:119.200000pt;}
.y1b5{bottom:120.480000pt;}
.yd5{bottom:121.920000pt;}
.y15f{bottom:122.880000pt;}
.y1d8{bottom:124.480000pt;}
.y134{bottom:125.920000pt;}
.y17d{bottom:126.400000pt;}
.y84{bottom:129.120000pt;}
.y11c{bottom:129.760000pt;}
.yaf{bottom:131.040000pt;}
.y1f0{bottom:131.360000pt;}
.y46{bottom:134.560000pt;}
.y1b4{bottom:135.680000pt;}
.yd4{bottom:137.120000pt;}
.y15e{bottom:138.240000pt;}
.y1d7{bottom:139.680000pt;}
.y133{bottom:141.280000pt;}
.y17c{bottom:141.760000pt;}
.y83{bottom:144.480000pt;}
.y11b{bottom:145.120000pt;}
.yae{bottom:146.400000pt;}
.y1ef{bottom:146.560000pt;}
.y45{bottom:149.920000pt;}
.y1b3{bottom:151.040000pt;}
.yb5{bottom:151.773333pt;}
.yd3{bottom:152.480000pt;}
.y15d{bottom:153.600000pt;}
.y1d6{bottom:155.040000pt;}
.y132{bottom:156.640000pt;}
.y17b{bottom:157.120000pt;}
.y82{bottom:159.680000pt;}
.y11a{bottom:160.480000pt;}
.yad{bottom:161.600000pt;}
.y1ee{bottom:161.920000pt;}
.y1b2{bottom:166.426667pt;}
.yd2{bottom:167.866667pt;}
.y15c{bottom:168.986667pt;}
.yb4{bottom:169.053333pt;}
.y44{bottom:169.146667pt;}
.y1d5{bottom:170.426667pt;}
.y131{bottom:172.026667pt;}
.y17a{bottom:172.506667pt;}
.y81{bottom:175.066667pt;}
.y119{bottom:175.706667pt;}
.yac{bottom:176.986667pt;}
.y1ed{bottom:177.306667pt;}
.y1b1{bottom:181.786667pt;}
.yf0{bottom:181.986667pt;}
.yd1{bottom:183.226667pt;}
.y15b{bottom:184.186667pt;}
.y1d4{bottom:185.786667pt;}
.y130{bottom:187.226667pt;}
.yed{bottom:187.520000pt;}
.y179{bottom:187.866667pt;}
.y43{bottom:188.506667pt;}
.y80{bottom:190.426667pt;}
.y118{bottom:191.066667pt;}
.yab{bottom:192.346667pt;}
.y1ec{bottom:192.666667pt;}
.yef{bottom:193.026667pt;}
.y1b0{bottom:197.146667pt;}
.yec{bottom:198.560000pt;}
.yd0{bottom:198.586667pt;}
.y15a{bottom:199.546667pt;}
.y1d3{bottom:201.146667pt;}
.y12f{bottom:202.586667pt;}
.y178{bottom:203.226667pt;}
.y42{bottom:203.866667pt;}
.yee{bottom:204.066667pt;}
.ya8{bottom:205.466667pt;}
.y7f{bottom:205.786667pt;}
.y117{bottom:206.426667pt;}
.y1eb{bottom:208.026667pt;}
.y1af{bottom:212.506667pt;}
.ycf{bottom:213.946667pt;}
.y159{bottom:214.906667pt;}
.y1d2{bottom:216.506667pt;}
.y12e{bottom:217.946667pt;}
.y177{bottom:218.426667pt;}
.y41{bottom:219.226667pt;}
.y7e{bottom:221.146667pt;}
.y116{bottom:221.786667pt;}
.ye7{bottom:223.106667pt;}
.y1ea{bottom:223.386667pt;}
.y1ae{bottom:227.706667pt;}
.yce{bottom:229.146667pt;}
.y158{bottom:230.266667pt;}
.y1d1{bottom:231.706667pt;}
.y176{bottom:233.146667pt;}
.y12d{bottom:233.306667pt;}
.ye6{bottom:234.173333pt;}
.y40{bottom:234.586667pt;}
.yeb{bottom:236.000000pt;}
.y7d{bottom:236.506667pt;}
.y115{bottom:237.146667pt;}
.y1e9{bottom:238.586667pt;}
.y1ad{bottom:243.066667pt;}
.ycd{bottom:244.506667pt;}
.ye5{bottom:245.213333pt;}
.y157{bottom:245.626667pt;}
.y175{bottom:246.106667pt;}
.yea{bottom:247.040000pt;}
.y1d0{bottom:247.066667pt;}
.ya7{bottom:247.546667pt;}
.y12c{bottom:248.666667pt;}
.y3f{bottom:249.946667pt;}
.y7c{bottom:251.706667pt;}
.y114{bottom:252.506667pt;}
.y1e8{bottom:253.946667pt;}
.ye4{bottom:256.253333pt;}
.ye9{bottom:258.080000pt;}
.y1ac{bottom:258.426667pt;}
.ycc{bottom:259.866667pt;}
.y156{bottom:260.826667pt;}
.y174{bottom:261.466667pt;}
.y1cf{bottom:262.426667pt;}
.y12b{bottom:263.866667pt;}
.y3e{bottom:265.146667pt;}
.y7b{bottom:267.066667pt;}
.ye3{bottom:267.293333pt;}
.y113{bottom:267.706667pt;}
.ye8{bottom:269.120000pt;}
.y1e7{bottom:269.306667pt;}
.y1ab{bottom:273.786667pt;}
.ycb{bottom:275.226667pt;}
.ya6{bottom:275.866667pt;}
.y155{bottom:276.186667pt;}
.y173{bottom:276.666667pt;}
.y1ce{bottom:277.786667pt;}
.y12a{bottom:279.226667pt;}
.y3d{bottom:280.506667pt;}
.y7a{bottom:282.426667pt;}
.y112{bottom:283.066667pt;}
.y1e6{bottom:284.666667pt;}
.y172{bottom:289.146667pt;}
.yca{bottom:290.586667pt;}
.y154{bottom:291.546667pt;}
.y1cd{bottom:293.146667pt;}
.y129{bottom:294.586667pt;}
.y3c{bottom:295.866667pt;}
.y79{bottom:297.786667pt;}
.y111{bottom:298.426667pt;}
.y1e5{bottom:300.026667pt;}
.y1aa{bottom:304.506667pt;}
.yc9{bottom:305.946667pt;}
.y153{bottom:306.906667pt;}
.y1cc{bottom:308.506667pt;}
.y128{bottom:309.946667pt;}
.y3b{bottom:311.226667pt;}
.y78{bottom:313.146667pt;}
.y110{bottom:313.786667pt;}
.y1e4{bottom:315.226667pt;}
.ya2{bottom:317.946667pt;}
.y1a9{bottom:319.706667pt;}
.yc8{bottom:321.146667pt;}
.y152{bottom:322.266667pt;}
.y1cb{bottom:323.706667pt;}
.y4a{bottom:323.866667pt;}
.y127{bottom:325.306667pt;}
.y3a{bottom:326.586667pt;}
.y77{bottom:328.506667pt;}
.y10f{bottom:329.146667pt;}
.y1e3{bottom:330.586667pt;}
.y1a8{bottom:335.066667pt;}
.yc7{bottom:336.506667pt;}
.y151{bottom:337.626667pt;}
.y1ca{bottom:339.066667pt;}
.y126{bottom:340.666667pt;}
.y39{bottom:341.786667pt;}
.y76{bottom:343.706667pt;}
.y10e{bottom:344.506667pt;}
.y1e2{bottom:345.946667pt;}
.y1a7{bottom:350.426667pt;}
.yc6{bottom:351.866667pt;}
.y150{bottom:352.826667pt;}
.y1c9{bottom:354.426667pt;}
.y125{bottom:355.866667pt;}
.y38{bottom:357.146667pt;}
.y1df{bottom:358.426667pt;}
.y75{bottom:359.066667pt;}
.y10d{bottom:359.706667pt;}
.y1a6{bottom:365.786667pt;}
.yc5{bottom:367.226667pt;}
.y14f{bottom:368.186667pt;}
.y1c8{bottom:369.786667pt;}
.y124{bottom:371.226667pt;}
.y37{bottom:372.506667pt;}
.y9f{bottom:373.786667pt;}
.y74{bottom:374.426667pt;}
.y10c{bottom:375.066667pt;}
.y14e{bottom:381.346667pt;}
.yc4{bottom:382.626667pt;}
.y1c7{bottom:385.186667pt;}
.y36{bottom:387.266667pt;}
.y123{bottom:387.586667pt;}
.y10b{bottom:390.466667pt;}
.y73{bottom:393.826667pt;}
.yc3{bottom:397.986667pt;}
.y1c6{bottom:400.386667pt;}
.y35{bottom:400.546667pt;}
.y122{bottom:403.906667pt;}
.y10a{bottom:405.826667pt;}
.y34{bottom:412.866667pt;}
.y72{bottom:413.186667pt;}
.y1de{bottom:413.666667pt;}
.y1a5{bottom:414.466667pt;}
.y1c5{bottom:415.746667pt;}
.y9d{bottom:415.906667pt;}
.y121{bottom:419.266667pt;}
.y109{bottom:421.186667pt;}
.y33{bottom:425.026667pt;}
.y1dd{bottom:427.426667pt;}
.y71{bottom:428.386667pt;}
.yc2{bottom:428.546667pt;}
.y1c4{bottom:431.106667pt;}
.y120{bottom:435.586667pt;}
.y108{bottom:436.386667pt;}
.y32{bottom:437.346667pt;}
.y1dc{bottom:441.186667pt;}
.y70{bottom:443.746667pt;}
.yc1{bottom:443.906667pt;}
.y1c3{bottom:446.466667pt;}
.y31{bottom:449.666667pt;}
.y14d{bottom:451.106667pt;}
.y107{bottom:451.746667pt;}
.y6f{bottom:459.106667pt;}
.yc0{bottom:459.266667pt;}
.y30{bottom:461.826667pt;}
.y1a4{bottom:463.106667pt;}
.y106{bottom:467.106667pt;}
.y2f{bottom:474.146667pt;}
.y6e{bottom:474.466667pt;}
.ybf{bottom:474.626667pt;}
.y9c{bottom:477.186667pt;}
.y1a3{bottom:478.466667pt;}
.y105{bottom:482.466667pt;}
.y2e{bottom:486.466667pt;}
.y6d{bottom:489.826667pt;}
.y1c2{bottom:492.386667pt;}
.y9b{bottom:492.546667pt;}
.y1a2{bottom:493.826667pt;}
.y1db{bottom:496.386667pt;}
.y104{bottom:497.826667pt;}
.y2d{bottom:498.626667pt;}
.y6c{bottom:505.186667pt;}
.y1c1{bottom:507.746667pt;}
.y9a{bottom:507.906667pt;}
.y1a1{bottom:509.186667pt;}
.y2c{bottom:510.946667pt;}
.y103{bottom:513.186667pt;}
.y6b{bottom:520.386667pt;}
.ybe{bottom:520.546667pt;}
.y14c{bottom:520.706667pt;}
.y2b{bottom:523.106667pt;}
.y1a0{bottom:524.386667pt;}
.y102{bottom:528.386667pt;}
.y2a{bottom:535.426667pt;}
.y6a{bottom:535.746667pt;}
.ybd{bottom:535.906667pt;}
.y99{bottom:538.466667pt;}
.y19f{bottom:539.746667pt;}
.y101{bottom:543.746667pt;}
.y29{bottom:547.746667pt;}
.y69{bottom:551.106667pt;}
.ybc{bottom:551.266667pt;}
.y98{bottom:553.826667pt;}
.y19e{bottom:555.106667pt;}
.y100{bottom:559.106667pt;}
.y28{bottom:559.906667pt;}
.y68{bottom:566.466667pt;}
.ybb{bottom:566.626667pt;}
.y97{bottom:569.186667pt;}
.y19d{bottom:570.466667pt;}
.y27{bottom:572.226667pt;}
.yff{bottom:574.466667pt;}
.yba{bottom:578.946667pt;}
.yd7{bottom:579.040000pt;}
.y67{bottom:581.826667pt;}
.y1c0{bottom:584.386667pt;}
.y26{bottom:584.546667pt;}
.y19c{bottom:585.826667pt;}
.yfe{bottom:589.826667pt;}
.y25{bottom:596.733333pt;}
.y66{bottom:597.213333pt;}
.y1bf{bottom:599.773333pt;}
.y96{bottom:599.933333pt;}
.y171{bottom:600.093333pt;}
.y19b{bottom:601.213333pt;}
.y14a{bottom:604.253333pt;}
.yfd{bottom:605.213333pt;}
.y24{bottom:609.053333pt;}
.y65{bottom:612.413333pt;}
.y170{bottom:613.053333pt;}
.y95{bottom:615.133333pt;}
.y19a{bottom:616.413333pt;}
.yfc{bottom:620.413333pt;}
.y23{bottom:621.373333pt;}
.y64{bottom:627.773333pt;}
.y16f{bottom:628.413333pt;}
.y94{bottom:630.493333pt;}
.y199{bottom:631.773333pt;}
.y22{bottom:633.533333pt;}
.yfb{bottom:635.773333pt;}
.y63{bottom:643.133333pt;}
.y16e{bottom:643.613333pt;}
.y21{bottom:645.853333pt;}
.y198{bottom:647.133333pt;}
.yfa{bottom:651.133333pt;}
.y20{bottom:658.173333pt;}
.y62{bottom:658.493333pt;}
.y16d{bottom:658.973333pt;}
.y142{bottom:660.093333pt;}
.y93{bottom:661.213333pt;}
.y197{bottom:662.493333pt;}
.yf9{bottom:666.493333pt;}
.y1f{bottom:670.333333pt;}
.y16c{bottom:673.693333pt;}
.y61{bottom:673.853333pt;}
.y1be{bottom:676.413333pt;}
.y92{bottom:676.573333pt;}
.y196{bottom:677.853333pt;}
.yf8{bottom:681.853333pt;}
.y1e{bottom:682.653333pt;}
.y16b{bottom:686.653333pt;}
.y60{bottom:689.213333pt;}
.y91{bottom:691.773333pt;}
.y195{bottom:693.213333pt;}
.yf7{bottom:697.213333pt;}
.y1d{bottom:697.853333pt;}
.y16a{bottom:699.773333pt;}
.y90{bottom:707.133333pt;}
.y5f{bottom:708.413333pt;}
.yf6{bottom:712.413333pt;}
.y1c{bottom:713.213333pt;}
.y8f{bottom:722.493333pt;}
.y194{bottom:723.773333pt;}
.y5e{bottom:727.773333pt;}
.y169{bottom:727.933333pt;}
.y1b{bottom:728.573333pt;}
.y8e{bottom:737.853333pt;}
.y193{bottom:739.133333pt;}
.y168{bottom:742.493333pt;}
.y5d{bottom:743.133333pt;}
.y140{bottom:743.453333pt;}
.y1a{bottom:743.933333pt;}
.y8d{bottom:750.333333pt;}
.yb3{bottom:750.400000pt;}
.y1bd{bottom:753.053333pt;}
.y192{bottom:754.493333pt;}
.y5c{bottom:758.493333pt;}
.y19{bottom:759.293333pt;}
.y1bc{bottom:768.413333pt;}
.y191{bottom:769.853333pt;}
.y5b{bottom:773.853333pt;}
.y18{bottom:774.493333pt;}
.y1bb{bottom:783.773333pt;}
.y167{bottom:784.573333pt;}
.y190{bottom:785.053333pt;}
.y5a{bottom:789.053333pt;}
.y17{bottom:789.853333pt;}
.y166{bottom:798.973333pt;}
.y1ba{bottom:799.133333pt;}
.y13d{bottom:799.453333pt;}
.y18f{bottom:800.413333pt;}
.y59{bottom:804.413333pt;}
.y16{bottom:805.213333pt;}
.y165{bottom:813.413333pt;}
.y1b9{bottom:814.533333pt;}
.y18e{bottom:815.813333pt;}
.y58{bottom:819.813333pt;}
.y15{bottom:820.613333pt;}
.y164{bottom:827.973333pt;}
.y1b8{bottom:829.893333pt;}
.y18d{bottom:831.173333pt;}
.y57{bottom:835.173333pt;}
.y14{bottom:835.973333pt;}
.y13b{bottom:841.413333pt;}
.y1b7{bottom:845.093333pt;}
.y18c{bottom:846.533333pt;}
.y56{bottom:850.533333pt;}
.y163{bottom:856.293333pt;}
.y18b{bottom:861.893333pt;}
.y55{bottom:865.893333pt;}
.y13{bottom:867.173333pt;}
.y18a{bottom:877.093333pt;}
.y54{bottom:881.093333pt;}
.y138{bottom:883.493333pt;}
.y162{bottom:884.133333pt;}
.y12{bottom:885.573333pt;}
.y189{bottom:892.453333pt;}
.y1b6{bottom:893.893333pt;}
.y53{bottom:896.453333pt;}
.y161{bottom:898.853333pt;}
.y11{bottom:903.173333pt;}
.y188{bottom:907.813333pt;}
.y52{bottom:911.813333pt;}
.y10{bottom:920.773333pt;}
.y187{bottom:923.173333pt;}
.y51{bottom:927.173333pt;}
.yf{bottom:938.373333pt;}
.y186{bottom:938.533333pt;}
.y8c{bottom:939.653333pt;}
.y50{bottom:942.533333pt;}
.y185{bottom:953.893333pt;}
.y8b{bottom:955.013333pt;}
.y4f{bottom:957.893333pt;}
.y184{bottom:969.093333pt;}
.y8a{bottom:971.173333pt;}
.ye{bottom:973.093333pt;}
.y183{bottom:984.453333pt;}
.y89{bottom:986.533333pt;}
.yd{bottom:988.453333pt;}
.y182{bottom:999.813333pt;}
.y88{bottom:1002.853333pt;}
.yc{bottom:1003.813333pt;}
.y181{bottom:1015.173333pt;}
.yb{bottom:1019.173333pt;}
.ya{bottom:1034.560000pt;}
.y5{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h33{height:5.025000pt;}
.h19{height:13.760000pt;}
.h2c{height:13.792000pt;}
.h2b{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h16{height:26.852500pt;}
.h1f{height:27.520000pt;}
.h26{height:27.680000pt;}
.h17{height:29.187500pt;}
.h15{height:29.343750pt;}
.h30{height:31.360000pt;}
.h3{height:33.857500pt;}
.h31{height:36.431250pt;}
.h10{height:37.792187pt;}
.h25{height:37.905000pt;}
.h23{height:39.562500pt;}
.h1e{height:41.280000pt;}
.h1b{height:41.312000pt;}
.h20{height:41.440000pt;}
.h22{height:41.507812pt;}
.hf{height:42.063437pt;}
.h6{height:42.084375pt;}
.h1c{height:42.304688pt;}
.h32{height:43.215000pt;}
.h9{height:44.505000pt;}
.h11{height:46.817187pt;}
.h2d{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h2e{height:47.742188pt;}
.he{height:52.108438pt;}
.hb{height:52.134375pt;}
.h12{height:53.535000pt;}
.h4{height:53.992500pt;}
.h18{height:54.598989pt;}
.h1d{height:55.040000pt;}
.h27{height:55.200000pt;}
.h2f{height:55.232000pt;}
.ha{height:58.563750pt;}
.hc{height:61.920000pt;}
.h13{height:63.072000pt;}
.hd{height:64.500000pt;}
.h2a{height:68.960000pt;}
.h28{height:82.720000pt;}
.h29{height:82.752000pt;}
.h21{height:186.400000pt;}
.h14{height:235.546875pt;}
.h24{height:299.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.w17{width:56.320000pt;}
.w15{width:65.760000pt;}
.w16{width:65.792000pt;}
.w1a{width:75.520000pt;}
.w14{width:76.480000pt;}
.we{width:107.200000pt;}
.wf{width:112.512000pt;}
.w11{width:112.640000pt;}
.wc{width:112.800000pt;}
.w10{width:121.952000pt;}
.w3{width:140.026667pt;}
.w12{width:146.586667pt;}
.w18{width:157.306667pt;}
.w13{width:178.426667pt;}
.w8{width:203.546667pt;}
.w4{width:224.986667pt;}
.w2{width:239.706667pt;}
.wa{width:386.146667pt;}
.wd{width:490.013333pt;}
.w1b{width:529.373333pt;}
.w6{width:604.733333pt;}
.w19{width:606.653333pt;}
.wb{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x56{left:1.760000pt;}
.x59{left:4.640000pt;}
.x2{left:7.200000pt;}
.x16{left:8.320000pt;}
.x46{left:10.720000pt;}
.x48{left:12.480000pt;}
.x4d{left:25.120000pt;}
.x4e{left:26.240000pt;}
.x51{left:27.680000pt;}
.x3d{left:28.640000pt;}
.x4c{left:29.920000pt;}
.x4{left:31.680000pt;}
.x21{left:32.960000pt;}
.x40{left:35.040000pt;}
.x3c{left:36.320000pt;}
.x3e{left:40.640000pt;}
.x6{left:44.480000pt;}
.x55{left:48.954667pt;}
.x50{left:51.040000pt;}
.x42{left:52.840000pt;}
.x4f{left:57.320000pt;}
.x44{left:65.754667pt;}
.x15{left:86.432000pt;}
.x17{left:92.672000pt;}
.x1{left:94.592000pt;}
.x57{left:101.792000pt;}
.xb{left:106.111988pt;}
.x43{left:108.191988pt;}
.x14{left:113.471988pt;}
.x27{left:117.791988pt;}
.x1a{left:129.466667pt;}
.x2c{left:130.527988pt;}
.x2d{left:136.613322pt;}
.x13{left:141.466655pt;}
.x12{left:144.826655pt;}
.xc{left:152.986655pt;}
.x30{left:158.559988pt;}
.x28{left:160.026655pt;}
.x31{left:164.639988pt;}
.x25{left:167.066655pt;}
.x24{left:168.133322pt;}
.x58{left:177.306667pt;}
.x9{left:183.226655pt;}
.x23{left:203.880000pt;}
.x22{left:208.666667pt;}
.x1f{left:211.066655pt;}
.x29{left:234.266655pt;}
.x1b{left:237.306667pt;}
.x20{left:248.986655pt;}
.x53{left:253.986655pt;}
.x45{left:274.306667pt;}
.x3b{left:281.026655pt;}
.x8{left:294.274667pt;}
.x18{left:296.226667pt;}
.x1c{left:297.954667pt;}
.x19{left:315.106667pt;}
.x33{left:316.066655pt;}
.x3a{left:320.066655pt;}
.x32{left:326.786655pt;}
.x3{left:334.306667pt;}
.x47{left:351.426667pt;}
.x54{left:372.066655pt;}
.xd{left:393.666655pt;}
.xa{left:396.866655pt;}
.x1e{left:398.306655pt;}
.x39{left:405.786655pt;}
.x37{left:409.466655pt;}
.x35{left:413.466655pt;}
.x49{left:417.986667pt;}
.x38{left:421.946655pt;}
.x34{left:422.906655pt;}
.x36{left:426.266655pt;}
.x3f{left:438.813333pt;}
.x5{left:474.333333pt;}
.x4a{left:484.413333pt;}
.x2e{left:502.426655pt;}
.x2f{left:508.506655pt;}
.x2a{left:513.733322pt;}
.x2b{left:519.813322pt;}
.xe{left:529.213322pt;}
.xf{left:533.053322pt;}
.x4b{left:541.373333pt;}
.x41{left:552.093333pt;}
.x10{left:581.213322pt;}
.x11{left:587.773322pt;}
.x52{left:635.013322pt;}
.x1d{left:673.253322pt;}
.x26{left:684.933322pt;}
.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; }
  