
    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_dc3050d6d123b28a48d18ee2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.401855;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_247f626f8f5e5fa61502793f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3606837ecf2a3a18bbe7e694.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_70c9ce257739559ab2229d00.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_07d1a30fc428a9eec27f500c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0914481a5cab57890addae71.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1e44105cc0b55b25645d6c68.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_11168fe023df88298a899b89.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_a3ec6525ee1a3f0e681081ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d31dbe15af9fcfcec114f311.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_b80c1164ca02232e1a71b908.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050293;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_4f453a43819b6a37697e46a6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_273c9f93c6879a70507bf2e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.383301;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_e0fcdad7ff4f3d53e2d7adb8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_9f875891d0c3103a17bc098b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d57f29ab3b144cfe0f0b48c9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.998047;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_3440353770e940dc6676fade.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.800781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-69.120000px;}
.v7{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:40.320000px;}
.v3{vertical-align:46.080000px;}
.v6{vertical-align:86.520000px;}
.ls5{letter-spacing:-1.080000px;}
.ls31{letter-spacing:-0.774000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.100200px;}
.ls10{letter-spacing:-0.053400px;}
.ls3{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.029280px;}
.ls17{letter-spacing:0.053280px;}
.ls2b{letter-spacing:0.053400px;}
.ls13{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.119400px;}
.ls1f{letter-spacing:0.135600px;}
.ls33{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.233280px;}
.lse{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.269400px;}
.ls1d{letter-spacing:0.298800px;}
.ls2d{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.311760px;}
.ls29{letter-spacing:0.324000px;}
.ls28{letter-spacing:0.336000px;}
.ls11{letter-spacing:0.356400px;}
.ls1{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.378000px;}
.ls22{letter-spacing:1.704240px;}
.ls14{letter-spacing:5.215680px;}
.ls15{letter-spacing:5.220000px;}
.ls1c{letter-spacing:7.380000px;}
.lsa{letter-spacing:8.100000px;}
.lsd{letter-spacing:9.540000px;}
.ls21{letter-spacing:10.092960px;}
.ls2{letter-spacing:10.980000px;}
.ls2f{letter-spacing:11.466720px;}
.lsc{letter-spacing:21.924000px;}
.ls23{letter-spacing:21.955680px;}
.lsb{letter-spacing:23.940000px;}
.ls24{letter-spacing:35.455680px;}
.ls2a{letter-spacing:41.706720px;}
.lsf{letter-spacing:64.026720px;}
.ls25{letter-spacing:66.360000px;}
.ls30{letter-spacing:363.780000px;}
.ls1a{letter-spacing:727.560000px;}
.ls18{letter-spacing:782.280000px;}
.ls32{letter-spacing:1050.816000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws13{word-spacing:-14.993400px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886600px;}
.ws3{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.824000px;}
.wsb{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.410720px;}
.ws4{word-spacing:-13.229520px;}
.wsd{word-spacing:-13.147200px;}
.ws0{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:0.344160px;}
.wse{word-spacing:3.412080px;}
.ws12{word-spacing:12.882840px;}
.wsf{word-spacing:38.100000px;}
._2c{margin-left:-27.960000px;}
._19{margin-left:-15.834239px;}
._29{margin-left:-12.336000px;}
._2b{margin-left:-7.740000px;}
._20{margin-left:-6.663598px;}
._d{margin-left:-3.937197px;}
._c{margin-left:-2.928001px;}
._1{margin-left:-1.224000px;}
._2{width:1.068000px;}
._3{width:2.354880px;}
._8{width:3.633120px;}
._6{width:4.644000px;}
._7{width:5.886000px;}
._5{width:7.056000px;}
._4{width:8.532000px;}
._9{width:10.368000px;}
._e{width:11.713199px;}
._16{width:13.087201px;}
._2a{width:14.405880px;}
._13{width:15.999120px;}
._14{width:17.031600px;}
._1a{width:18.357000px;}
._a{width:19.710000px;}
._1b{width:21.665519px;}
._18{width:23.008198px;}
._17{width:24.142801px;}
._1e{width:25.164002px;}
._10{width:26.175000px;}
._f{width:27.489600px;}
._11{width:28.991400px;}
._1d{width:30.394202px;}
._15{width:31.561199px;}
._44{width:33.193800px;}
._2d{width:35.377800px;}
._1c{width:36.760200px;}
._b{width:38.502000px;}
._35{width:40.746239px;}
._23{width:43.146600px;}
._33{width:44.222340px;}
._12{width:45.664141px;}
._34{width:47.270339px;}
._31{width:48.583200px;}
._30{width:49.780140px;}
._45{width:51.640141px;}
._3e{width:54.322919px;}
._3d{width:55.875540px;}
._25{width:57.855539px;}
._22{width:60.238140px;}
._3a{width:61.441139px;}
._24{width:71.054939px;}
._37{width:75.007137px;}
._36{width:76.313341px;}
._21{width:78.584340px;}
._28{width:86.659740px;}
._26{width:94.719540px;}
._43{width:104.341139px;}
._42{width:105.476340px;}
._3c{width:111.930540px;}
._40{width:116.651341px;}
._41{width:117.655978px;}
._27{width:127.706941px;}
._2e{width:160.455480px;}
._38{width:178.324079px;}
._46{width:210.594479px;}
._3f{width:214.299480px;}
._32{width:247.048019px;}
._3b{width:352.701840px;}
._39{width:363.357360px;}
._2f{width:377.578560px;}
._1f{width:783.413280px;}
._0{width:2833.746720px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(34,34,34);}
.fc3{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y58{bottom:-10.800000px;}
.y0{bottom:0.000000px;}
.y57{bottom:2.880000px;}
.y12f{bottom:3.060000px;}
.y5a{bottom:3.237000px;}
.yc{bottom:3.240000px;}
.y10{bottom:3.285000px;}
.y3{bottom:3.420000px;}
.y8{bottom:3.960000px;}
.y11a{bottom:4.680000px;}
.y172{bottom:5.010000px;}
.y115{bottom:7.200000px;}
.yc1{bottom:10.080000px;}
.y155{bottom:10.110000px;}
.y133{bottom:10.620000px;}
.y1ab{bottom:10.650000px;}
.y11f{bottom:10.800000px;}
.yc2{bottom:11.340000px;}
.y156{bottom:11.550000px;}
.y56{bottom:15.870000px;}
.y132{bottom:18.360000px;}
.y12e{bottom:18.540000px;}
.y174{bottom:18.570000px;}
.y13b{bottom:18.585000px;}
.y20{bottom:20.160000px;}
.y171{bottom:20.490000px;}
.yb{bottom:20.520000px;}
.y12{bottom:21.960000px;}
.y114{bottom:24.480000px;}
.y7{bottom:24.660000px;}
.y55{bottom:25.410000px;}
.y186{bottom:26.100000px;}
.y139{bottom:26.280000px;}
.y2{bottom:27.390000px;}
.y11e{bottom:28.080000px;}
.y131{bottom:33.840000px;}
.y12d{bottom:34.020000px;}
.y13a{bottom:34.065000px;}
.y1f{bottom:35.640000px;}
.y16f{bottom:36.615000px;}
.y59{bottom:37.506386px;}
.ya{bottom:37.800000px;}
.y119{bottom:39.060000px;}
.y54{bottom:40.530000px;}
.y113{bottom:41.580000px;}
.y136{bottom:41.805000px;}
.y6{bottom:45.360000px;}
.y138{bottom:49.500000px;}
.y1e{bottom:51.300000px;}
.y16a{bottom:52.485000px;}
.y118{bottom:56.340000px;}
.y12b{bottom:57.240000px;}
.y135{bottom:57.285000px;}
.y5b{bottom:57.960000px;}
.y112{bottom:58.860000px;}
.y53{bottom:61.230000px;}
.y11d{bottom:62.640000px;}
.y1d{bottom:66.780000px;}
.y117{bottom:73.650000px;}
.y111{bottom:76.140000px;}
.y11c{bottom:79.920000px;}
.y1c{bottom:82.260000px;}
.y16b{bottom:88.950000px;}
.y170{bottom:90.435000px;}
.y26{bottom:90.540000px;}
.y51{bottom:91.080000px;}
.y168{bottom:93.060000px;}
.y110{bottom:93.420000px;}
.y1c5{bottom:94.140000px;}
.ybf{bottom:95.400000px;}
.y9b{bottom:96.300000px;}
.y10e{bottom:96.660000px;}
.y1b{bottom:97.740000px;}
.yf6{bottom:100.620000px;}
.y1e0{bottom:100.800000px;}
.y14a{bottom:101.520000px;}
.y47{bottom:104.760000px;}
.y25{bottom:107.460000px;}
.y50{bottom:108.360000px;}
.y167{bottom:110.340000px;}
.y1a9{bottom:110.700000px;}
.y1c4{bottom:111.420000px;}
.ybe{bottom:112.680000px;}
.y1a{bottom:113.400000px;}
.y9a{bottom:113.580000px;}
.y10d{bottom:113.940000px;}
.yf5{bottom:117.936000px;}
.y1df{bottom:118.116000px;}
.y149{bottom:118.836000px;}
.y46{bottom:122.076000px;}
.y24{bottom:122.940000px;}
.y16c{bottom:125.460000px;}
.y4f{bottom:125.496000px;}
.y166{bottom:127.656000px;}
.y1a8{bottom:128.016000px;}
.y1c3{bottom:128.736000px;}
.y19{bottom:128.880000px;}
.ybd{bottom:129.816000px;}
.y99{bottom:130.896000px;}
.y10c{bottom:131.256000px;}
.yf4{bottom:135.216000px;}
.y1de{bottom:135.396000px;}
.y148{bottom:136.116000px;}
.y23{bottom:138.420000px;}
.y45{bottom:139.356000px;}
.y4e{bottom:142.776000px;}
.y18{bottom:144.360000px;}
.y165{bottom:144.936000px;}
.y1a7{bottom:145.296000px;}
.y1c2{bottom:145.836000px;}
.ybc{bottom:147.096000px;}
.y98{bottom:148.176000px;}
.y10b{bottom:148.536000px;}
.yf3{bottom:152.490000px;}
.y1dd{bottom:152.670000px;}
.y147{bottom:153.210000px;}
.y22{bottom:154.260000px;}
.y44{bottom:156.630000px;}
.y17{bottom:159.840000px;}
.y4d{bottom:160.050000px;}
.y16d{bottom:161.925000px;}
.y164{bottom:162.210000px;}
.y1a6{bottom:162.390000px;}
.y1c1{bottom:163.110000px;}
.ybb{bottom:164.370000px;}
.y97{bottom:165.450000px;}
.y10a{bottom:165.630000px;}
.yf2{bottom:169.590000px;}
.y27{bottom:169.740000px;}
.y1dc{bottom:169.950000px;}
.y146{bottom:170.490000px;}
.y21{bottom:171.180000px;}
.y43{bottom:173.910000px;}
.y16{bottom:175.500000px;}
.y4c{bottom:177.330000px;}
.y163{bottom:179.310000px;}
.y1a5{bottom:179.670000px;}
.y1c0{bottom:180.390000px;}
.yba{bottom:181.650000px;}
.y96{bottom:182.550000px;}
.y109{bottom:182.910000px;}
.yf1{bottom:186.870000px;}
.y1db{bottom:187.050000px;}
.y145{bottom:187.770000px;}
.y15{bottom:190.980000px;}
.y42{bottom:191.190000px;}
.y4b{bottom:194.610000px;}
.y162{bottom:196.590000px;}
.y1a4{bottom:196.950000px;}
.y1bf{bottom:197.670000px;}
.y16e{bottom:198.435000px;}
.yb9{bottom:198.930000px;}
.y95{bottom:199.830000px;}
.y108{bottom:200.190000px;}
.yf0{bottom:204.150000px;}
.y1da{bottom:204.330000px;}
.y144{bottom:205.050000px;}
.y14{bottom:206.460000px;}
.y41{bottom:208.290000px;}
.y4a{bottom:211.890000px;}
.y161{bottom:213.870000px;}
.y1a3{bottom:214.230000px;}
.y1be{bottom:214.950000px;}
.yb8{bottom:216.210000px;}
.y94{bottom:217.110000px;}
.y107{bottom:217.470000px;}
.yef{bottom:221.430000px;}
.y1d9{bottom:221.610000px;}
.y143{bottom:222.330000px;}
.y40{bottom:225.570000px;}
.y49{bottom:228.990000px;}
.y160{bottom:231.150000px;}
.y1bd{bottom:232.050000px;}
.y93{bottom:234.390000px;}
.y106{bottom:234.750000px;}
.yee{bottom:238.710000px;}
.y1d8{bottom:238.890000px;}
.y142{bottom:239.610000px;}
.y3f{bottom:242.850000px;}
.y1a2{bottom:245.190000px;}
.y48{bottom:245.550000px;}
.y15f{bottom:248.430000px;}
.y1bc{bottom:249.330000px;}
.y92{bottom:251.670000px;}
.y105{bottom:251.850000px;}
.yed{bottom:255.990000px;}
.y1d7{bottom:256.170000px;}
.y141{bottom:256.710000px;}
.y3e{bottom:260.130000px;}
.y1a1{bottom:261.570000px;}
.y15e{bottom:265.710000px;}
.y1bb{bottom:266.610000px;}
.y91{bottom:268.770000px;}
.y104{bottom:269.130000px;}
.yb7{bottom:270.030000px;}
.yec{bottom:273.090000px;}
.y1d6{bottom:273.450000px;}
.y140{bottom:273.990000px;}
.y3d{bottom:277.410000px;}
.y1a0{bottom:277.770000px;}
.y15d{bottom:282.810000px;}
.y1ba{bottom:283.890000px;}
.y90{bottom:286.050000px;}
.y103{bottom:286.410000px;}
.yb6{bottom:287.310000px;}
.yeb{bottom:290.370000px;}
.y1d5{bottom:290.550000px;}
.y13f{bottom:291.270000px;}
.y19f{bottom:293.970000px;}
.y3c{bottom:294.510000px;}
.y15c{bottom:300.090000px;}
.y1b9{bottom:301.170000px;}
.y8f{bottom:303.330000px;}
.y102{bottom:303.690000px;}
.yb5{bottom:305.670000px;}
.yea{bottom:307.650000px;}
.y1d4{bottom:307.830000px;}
.y13e{bottom:308.550000px;}
.y19e{bottom:310.350000px;}
.y3b{bottom:311.790000px;}
.y1b8{bottom:318.450000px;}
.y8e{bottom:320.610000px;}
.y101{bottom:320.970000px;}
.yb4{bottom:322.950000px;}
.ye9{bottom:324.930000px;}
.y1d3{bottom:325.110000px;}
.y13d{bottom:325.830000px;}
.y19d{bottom:326.550000px;}
.y3a{bottom:329.070000px;}
.y15b{bottom:334.650000px;}
.y1b7{bottom:335.550000px;}
.y8d{bottom:337.890000px;}
.y100{bottom:338.250000px;}
.yb3{bottom:340.050000px;}
.ye8{bottom:342.210000px;}
.y1d2{bottom:342.390000px;}
.y19c{bottom:342.930000px;}
.y13c{bottom:343.110000px;}
.y39{bottom:346.350000px;}
.y15a{bottom:348.690000px;}
.y169{bottom:348.840000px;}
.y1b6{bottom:352.830000px;}
.y8c{bottom:355.170000px;}
.yff{bottom:355.350000px;}
.y134{bottom:356.970000px;}
.yb2{bottom:357.330000px;}
.y19b{bottom:359.130000px;}
.ye7{bottom:359.490000px;}
.y1d1{bottom:359.670000px;}
.y38{bottom:363.630000px;}
.y1b5{bottom:370.110000px;}
.y8b{bottom:372.315000px;}
.yfe{bottom:372.675000px;}
.yb1{bottom:374.655000px;}
.y19a{bottom:375.555000px;}
.ye6{bottom:376.635000px;}
.y1d0{bottom:376.995000px;}
.y37{bottom:380.955000px;}
.y1b4{bottom:387.435000px;}
.y8a{bottom:389.595000px;}
.yfd{bottom:389.955000px;}
.y199{bottom:391.755000px;}
.yb0{bottom:391.935000px;}
.ye5{bottom:393.915000px;}
.y1cf{bottom:394.095000px;}
.y36{bottom:398.055000px;}
.y137{bottom:403.635000px;}
.y1b3{bottom:404.715000px;}
.y89{bottom:406.875000px;}
.yfc{bottom:407.235000px;}
.y198{bottom:407.955000px;}
.yaf{bottom:409.215000px;}
.ye4{bottom:411.195000px;}
.y1ce{bottom:411.375000px;}
.y35{bottom:415.335000px;}
.y1b2{bottom:421.995000px;}
.y88{bottom:424.155000px;}
.y197{bottom:424.335000px;}
.yfb{bottom:424.515000px;}
.yae{bottom:426.315000px;}
.ye3{bottom:428.475000px;}
.y1cd{bottom:428.655000px;}
.y34{bottom:432.615000px;}
.y1b1{bottom:439.095000px;}
.y196{bottom:440.535000px;}
.y87{bottom:441.435000px;}
.yfa{bottom:441.795000px;}
.yad{bottom:443.595000px;}
.ye2{bottom:445.755000px;}
.y1cc{bottom:445.935000px;}
.y33{bottom:449.895000px;}
.y1b0{bottom:456.375000px;}
.y195{bottom:456.915000px;}
.y86{bottom:458.715000px;}
.yac{bottom:460.875000px;}
.ye1{bottom:463.035000px;}
.y1cb{bottom:463.215000px;}
.y12a{bottom:465.735000px;}
.y11b{bottom:466.815000px;}
.y32{bottom:467.175000px;}
.y1af{bottom:473.655000px;}
.yf9{bottom:476.175000px;}
.y85{bottom:477.975000px;}
.yab{bottom:478.155000px;}
.ye0{bottom:480.135000px;}
.y1ca{bottom:480.495000px;}
.y31{bottom:484.455000px;}
.y194{bottom:488.595000px;}
.y1ae{bottom:489.135000px;}
.yf8{bottom:493.455000px;}
.y84{bottom:495.435000px;}
.y130{bottom:496.875000px;}
.ydf{bottom:497.415000px;}
.y1c9{bottom:497.595000px;}
.y30{bottom:501.555000px;}
.y83{bottom:512.715000px;}
.yde{bottom:514.695000px;}
.y1c8{bottom:514.875000px;}
.y2f{bottom:518.835000px;}
.y193{bottom:520.455000px;}
.y1ad{bottom:521.715000px;}
.y82{bottom:529.815000px;}
.ydd{bottom:531.975000px;}
.y1c7{bottom:532.155000px;}
.y2e{bottom:536.115000px;}
.y192{bottom:536.655000px;}
.y12c{bottom:543.315000px;}
.yaa{bottom:547.095000px;}
.y81{bottom:549.255000px;}
.y1c6{bottom:549.435000px;}
.y191{bottom:553.035000px;}
.y2d{bottom:553.395000px;}
.y116{bottom:560.235000px;}
.ya9{bottom:564.375000px;}
.ydc{bottom:566.355000px;}
.y80{bottom:566.715000px;}
.y159{bottom:567.975000px;}
.y190{bottom:569.235000px;}
.y1ac{bottom:569.775000px;}
.y2c{bottom:570.675000px;}
.ya8{bottom:581.655000px;}
.ydb{bottom:583.635000px;}
.y7f{bottom:583.815000px;}
.y158{bottom:585.075000px;}
.y18f{bottom:585.615000px;}
.y2b{bottom:587.775000px;}
.y129{bottom:589.935000px;}
.ya7{bottom:598.935000px;}
.yda{bottom:600.915000px;}
.y7e{bottom:601.095000px;}
.y18e{bottom:601.815000px;}
.y157{bottom:602.355000px;}
.y2a{bottom:605.055000px;}
.y128{bottom:605.415000px;}
.ya6{bottom:616.215000px;}
.y154{bottom:616.395000px;}
.y1aa{bottom:617.835000px;}
.y18d{bottom:618.015000px;}
.yd9{bottom:618.195000px;}
.y7d{bottom:618.375000px;}
.y29{bottom:623.055000px;}
.y127{bottom:626.865000px;}
.ya5{bottom:633.345000px;}
.y18c{bottom:634.425000px;}
.yd8{bottom:635.505000px;}
.y7c{bottom:635.685000px;}
.y28{bottom:643.065000px;}
.y126{bottom:644.145000px;}
.ya4{bottom:650.625000px;}
.yd7{bottom:652.785000px;}
.y7b{bottom:652.965000px;}
.y153{bottom:653.325000px;}
.y13{bottom:657.825000px;}
.y125{bottom:661.425000px;}
.y18b{bottom:667.005000px;}
.ya3{bottom:667.905000px;}
.yd6{bottom:669.885000px;}
.y7a{bottom:670.245000px;}
.y152{bottom:670.605000px;}
.y124{bottom:678.345000px;}
.y18a{bottom:683.205000px;}
.ya2{bottom:685.185000px;}
.yd5{bottom:687.165000px;}
.y79{bottom:687.345000px;}
.y151{bottom:687.885000px;}
.y123{bottom:694.185000px;}
.yf7{bottom:699.225000px;}
.y189{bottom:699.405000px;}
.ya1{bottom:702.465000px;}
.yd4{bottom:704.445000px;}
.y78{bottom:704.625000px;}
.y150{bottom:705.165000px;}
.y122{bottom:711.465000px;}
.y188{bottom:715.785000px;}
.y14f{bottom:719.205000px;}
.ya0{bottom:719.565000px;}
.yd3{bottom:721.725000px;}
.y77{bottom:721.905000px;}
.y121{bottom:728.565000px;}
.y187{bottom:731.985000px;}
.y9f{bottom:736.845000px;}
.yd2{bottom:739.005000px;}
.y76{bottom:739.185000px;}
.y14e{bottom:739.905000px;}
.y120{bottom:742.605000px;}
.y185{bottom:748.365000px;}
.y9e{bottom:754.125000px;}
.yd1{bottom:756.285000px;}
.y75{bottom:756.465000px;}
.y14d{bottom:757.185000px;}
.y10f{bottom:769.785000px;}
.y9d{bottom:771.405000px;}
.yd0{bottom:773.385000px;}
.y74{bottom:773.745000px;}
.y14c{bottom:774.465000px;}
.y14b{bottom:788.505000px;}
.y9c{bottom:790.665000px;}
.y73{bottom:790.845000px;}
.ycf{bottom:807.945000px;}
.y72{bottom:808.125000px;}
.y184{bottom:811.185000px;}
.yce{bottom:825.225000px;}
.y71{bottom:825.405000px;}
.y11{bottom:842.325000px;}
.ycd{bottom:842.505000px;}
.y70{bottom:842.685000px;}
.y183{bottom:842.865000px;}
.y182{bottom:859.245000px;}
.ycc{bottom:859.605000px;}
.y6f{bottom:859.965000px;}
.y181{bottom:875.445000px;}
.yf{bottom:876.885000px;}
.y6e{bottom:877.065000px;}
.y180{bottom:891.870000px;}
.ycb{bottom:894.210000px;}
.y6d{bottom:894.390000px;}
.ye{bottom:894.930000px;}
.y17f{bottom:908.070000px;}
.yca{bottom:911.490000px;}
.y6c{bottom:911.670000px;}
.y17e{bottom:924.270000px;}
.yc9{bottom:928.770000px;}
.y6b{bottom:928.950000px;}
.yd{bottom:930.210000px;}
.y17d{bottom:940.650000px;}
.y1e6{bottom:942.990000px;}
.yc8{bottom:946.050000px;}
.y6a{bottom:946.230000px;}
.y17c{bottom:956.850000px;}
.y1e5{bottom:960.270000px;}
.y69{bottom:963.510000px;}
.yc7{bottom:964.410000px;}
.y17b{bottom:973.230000px;}
.y1e4{bottom:977.370000px;}
.y68{bottom:980.610000px;}
.yc6{bottom:981.690000px;}
.y9{bottom:981.870000px;}
.y17a{bottom:989.430000px;}
.y1e3{bottom:994.650000px;}
.y67{bottom:997.890000px;}
.yc5{bottom:998.790000px;}
.y179{bottom:1005.810000px;}
.y1e2{bottom:1011.930000px;}
.y66{bottom:1015.170000px;}
.yc4{bottom:1016.070000px;}
.y178{bottom:1022.010000px;}
.y1e1{bottom:1029.210000px;}
.y65{bottom:1032.450000px;}
.yc3{bottom:1033.350000px;}
.y5{bottom:1033.710000px;}
.y177{bottom:1038.210000px;}
.yc0{bottom:1047.390000px;}
.y64{bottom:1049.730000px;}
.y176{bottom:1054.590000px;}
.y63{bottom:1067.010000px;}
.y175{bottom:1070.790000px;}
.y62{bottom:1084.110000px;}
.y4{bottom:1099.770000px;}
.y61{bottom:1101.390000px;}
.y173{bottom:1118.130000px;}
.y60{bottom:1118.670000px;}
.y1{bottom:1120.470000px;}
.y52{bottom:1130.550000px;}
.y5f{bottom:1135.980000px;}
.y5e{bottom:1153.260000px;}
.y5d{bottom:1170.540000px;}
.y5c{bottom:1187.640000px;}
.h2a{height:15.480000px;}
.h3d{height:15.516000px;}
.h3c{height:15.660000px;}
.h3f{height:15.696000px;}
.h1e{height:16.500090px;}
.h43{height:17.100000px;}
.h42{height:17.280000px;}
.hb{height:17.316000px;}
.h34{height:17.460000px;}
.h3e{height:30.960000px;}
.h2f{height:31.140000px;}
.h3b{height:31.176000px;}
.h1c{height:31.539375px;}
.h22{height:33.480000px;}
.h32{height:33.660000px;}
.h36{height:33.696000px;}
.ha{height:34.560000px;}
.h13{height:37.494141px;}
.he{height:39.049805px;}
.h3a{height:39.420000px;}
.h18{height:40.254961px;}
.h17{height:42.164648px;}
.h21{height:44.178047px;}
.h20{height:45.061523px;}
.h2e{height:46.440000px;}
.h2d{height:46.620000px;}
.h31{height:46.656000px;}
.h1d{height:48.616875px;}
.h14{height:49.868086px;}
.h1b{height:50.312812px;}
.h35{height:50.364141px;}
.h15{height:50.800781px;}
.h9{height:51.660000px;}
.h6{height:51.840000px;}
.h11{height:52.971680px;}
.hc{height:52.998047px;}
.h40{height:53.324297px;}
.hf{height:53.332031px;}
.h25{height:53.468297px;}
.h2b{height:54.421875px;}
.h29{height:57.656250px;}
.h12{height:58.621992px;}
.h7{height:58.651172px;}
.h8{height:59.038594px;}
.h41{height:60.082031px;}
.h3{height:60.226875px;}
.h4{height:62.100000px;}
.h16{height:62.327813px;}
.h1f{height:63.339844px;}
.h5{height:72.562500px;}
.h1a{height:75.093750px;}
.h19{height:77.976000px;}
.h27{height:88.956000px;}
.h24{height:90.188086px;}
.h33{height:90.684141px;}
.h38{height:90.804141px;}
.h2{height:93.456000px;}
.h23{height:96.444141px;}
.h28{height:101.340000px;}
.h30{height:108.756000px;}
.h26{height:111.456000px;}
.h2c{height:124.200000px;}
.h37{height:136.884141px;}
.h10{height:183.780000px;}
.h39{height:216.000000px;}
.hd{height:219.060000px;}
.h0{height:1261.260000px;}
.h1{height:1261.500000px;}
.w7{width:18.360000px;}
.wa{width:30.000000px;}
.w11{width:42.120000px;}
.wc{width:46.260000px;}
.w4{width:49.536000px;}
.w13{width:55.620000px;}
.w12{width:55.836000px;}
.w20{width:74.340000px;}
.w15{width:78.120000px;}
.w14{width:83.916000px;}
.wd{width:107.676000px;}
.w1c{width:110.736000px;}
.w1f{width:114.840000px;}
.we{width:115.596000px;}
.w1e{width:118.296000px;}
.wf{width:121.176000px;}
.w1d{width:138.096000px;}
.w1b{width:148.176000px;}
.w10{width:162.030000px;}
.w19{width:169.410000px;}
.w17{width:180.390000px;}
.w6{width:243.435000px;}
.w1a{width:259.635000px;}
.w1{width:262.335000px;}
.w21{width:308.955000px;}
.wb{width:336.495000px;}
.w16{width:371.340000px;}
.w9{width:519.585000px;}
.w8{width:521.385000px;}
.w2{width:523.005000px;}
.w18{width:599.910000px;}
.w3{width:733.650000px;}
.w5{width:783.180000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x8{left:9.180000px;}
.x1d{left:10.800000px;}
.x2f{left:11.874000px;}
.x28{left:13.140000px;}
.x32{left:15.300000px;}
.x1a{left:16.380000px;}
.x2d{left:17.640000px;}
.x29{left:19.665000px;}
.x26{left:21.060000px;}
.x2c{left:22.140000px;}
.x54{left:23.220000px;}
.x2e{left:24.525000px;}
.x40{left:26.100000px;}
.x3c{left:27.720000px;}
.xe{left:28.980000px;}
.x30{left:30.600000px;}
.x52{left:32.220000px;}
.x31{left:33.294000px;}
.x5c{left:38.160000px;}
.x58{left:40.365000px;}
.x41{left:41.616000px;}
.x51{left:42.885000px;}
.x5d{left:44.316000px;}
.x45{left:45.390000px;}
.x5f{left:46.800000px;}
.x5b{left:48.420000px;}
.x55{left:51.660000px;}
.x1{left:54.000000px;}
.x9{left:55.080000px;}
.x3e{left:57.420000px;}
.x21{left:59.220000px;}
.x5a{left:62.325000px;}
.x56{left:63.945000px;}
.x4f{left:67.725000px;}
.xa{left:70.380000px;}
.x24{left:71.640000px;}
.x59{left:72.930000px;}
.x4c{left:74.565000px;}
.x4a{left:77.985000px;}
.x4e{left:80.136000px;}
.x48{left:81.225000px;}
.x36{left:83.340000px;}
.x47{left:86.976000px;}
.x4d{left:119.385000px;}
.x4b{left:122.805000px;}
.x49{left:126.225000px;}
.x3d{left:129.930000px;}
.x12{left:133.590000px;}
.x17{left:134.670000px;}
.x35{left:138.780000px;}
.x10{left:139.890000px;}
.x37{left:144.900000px;}
.x25{left:147.096000px;}
.x22{left:151.770000px;}
.x33{left:173.385000px;}
.x3f{left:174.450000px;}
.x18{left:189.570000px;}
.x5e{left:193.170000px;}
.x38{left:209.745000px;}
.x27{left:217.110000px;}
.xf{left:221.610000px;}
.x2{left:231.735000px;}
.x42{left:236.190000px;}
.x43{left:239.475000px;}
.x23{left:240.690000px;}
.x11{left:259.590000px;}
.x50{left:261.975000px;}
.x57{left:270.075000px;}
.x7{left:297.435000px;}
.x60{left:311.475000px;}
.x2a{left:315.075000px;}
.x3{left:316.335000px;}
.xd{left:319.395000px;}
.x2b{left:370.695000px;}
.x19{left:391.575000px;}
.x44{left:406.335000px;}
.x20{left:416.235000px;}
.x13{left:430.500000px;}
.x14{left:445.605000px;}
.x62{left:454.065000px;}
.xc{left:464.685000px;}
.x3a{left:471.705000px;}
.xb{left:479.985000px;}
.x3b{left:486.645000px;}
.x15{left:491.685000px;}
.x61{left:496.725000px;}
.x16{left:518.685000px;}
.x4{left:523.005000px;}
.x1b{left:526.065000px;}
.x63{left:528.405000px;}
.x46{left:576.465000px;}
.x1c{left:694.950000px;}
.x1f{left:714.030000px;}
.x1e{left:715.290000px;}
.x53{left:725.370000px;}
.x6{left:787.650000px;}
.x34{left:801.180000px;}
.x39{left:835.920000px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.v7{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:35.840000pt;}
.v3{vertical-align:40.960000pt;}
.v6{vertical-align:76.906667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls31{letter-spacing:-0.688000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.089067pt;}
.ls10{letter-spacing:-0.047467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.026027pt;}
.ls17{letter-spacing:0.047360pt;}
.ls2b{letter-spacing:0.047467pt;}
.ls13{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.106134pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls33{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.207360pt;}
.lse{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.239467pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls2d{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.277120pt;}
.ls29{letter-spacing:0.288000pt;}
.ls28{letter-spacing:0.298667pt;}
.ls11{letter-spacing:0.316800pt;}
.ls1{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.336000pt;}
.ls22{letter-spacing:1.514880pt;}
.ls14{letter-spacing:4.636160pt;}
.ls15{letter-spacing:4.640000pt;}
.ls1c{letter-spacing:6.560000pt;}
.lsa{letter-spacing:7.200000pt;}
.lsd{letter-spacing:8.480000pt;}
.ls21{letter-spacing:8.971520pt;}
.ls2{letter-spacing:9.760000pt;}
.ls2f{letter-spacing:10.192640pt;}
.lsc{letter-spacing:19.488000pt;}
.ls23{letter-spacing:19.516160pt;}
.lsb{letter-spacing:21.280000pt;}
.ls24{letter-spacing:31.516160pt;}
.ls2a{letter-spacing:37.072640pt;}
.lsf{letter-spacing:56.912640pt;}
.ls25{letter-spacing:58.986667pt;}
.ls30{letter-spacing:323.360000pt;}
.ls1a{letter-spacing:646.720000pt;}
.ls18{letter-spacing:695.360000pt;}
.ls32{letter-spacing:934.058667pt;}
.ws8{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.327467pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232533pt;}
.ws3{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.288000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.920640pt;}
.ws4{word-spacing:-11.759573pt;}
.wsd{word-spacing:-11.686400pt;}
.ws0{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:0.305920pt;}
.wse{word-spacing:3.032960pt;}
.ws12{word-spacing:11.451414pt;}
.wsf{word-spacing:33.866667pt;}
._2c{margin-left:-24.853333pt;}
._19{margin-left:-14.074879pt;}
._29{margin-left:-10.965333pt;}
._2b{margin-left:-6.880000pt;}
._20{margin-left:-5.923198pt;}
._d{margin-left:-3.499731pt;}
._c{margin-left:-2.602668pt;}
._1{margin-left:-1.088000pt;}
._2{width:0.949333pt;}
._3{width:2.093227pt;}
._8{width:3.229440pt;}
._6{width:4.128000pt;}
._7{width:5.232000pt;}
._5{width:6.272000pt;}
._4{width:7.584000pt;}
._9{width:9.216000pt;}
._e{width:10.411732pt;}
._16{width:11.633068pt;}
._2a{width:12.805226pt;}
._13{width:14.221440pt;}
._14{width:15.139200pt;}
._1a{width:16.317334pt;}
._a{width:17.520000pt;}
._1b{width:19.258239pt;}
._18{width:20.451731pt;}
._17{width:21.460268pt;}
._1e{width:22.368002pt;}
._10{width:23.266666pt;}
._f{width:24.435200pt;}
._11{width:25.770133pt;}
._1d{width:27.017069pt;}
._15{width:28.054399pt;}
._44{width:29.505600pt;}
._2d{width:31.446934pt;}
._1c{width:32.675733pt;}
._b{width:34.224000pt;}
._35{width:36.218879pt;}
._23{width:38.352534pt;}
._33{width:39.308747pt;}
._12{width:40.590347pt;}
._34{width:42.018079pt;}
._31{width:43.185067pt;}
._30{width:44.249013pt;}
._45{width:45.902347pt;}
._3e{width:48.287039pt;}
._3d{width:49.667147pt;}
._25{width:51.427146pt;}
._22{width:53.545013pt;}
._3a{width:54.614346pt;}
._24{width:63.159946pt;}
._37{width:66.673011pt;}
._36{width:67.834081pt;}
._21{width:69.852747pt;}
._28{width:77.030880pt;}
._26{width:84.195147pt;}
._43{width:92.747679pt;}
._42{width:93.756747pt;}
._3c{width:99.493813pt;}
._40{width:103.690081pt;}
._41{width:104.583091pt;}
._27{width:113.517281pt;}
._2e{width:142.627094pt;}
._38{width:158.510292pt;}
._46{width:187.195092pt;}
._3f{width:190.488426pt;}
._32{width:219.598239pt;}
._3b{width:313.512747pt;}
._39{width:322.984320pt;}
._2f{width:335.625387pt;}
._1f{width:696.367360pt;}
._0{width:2518.885973pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y58{bottom:-9.600000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.560000pt;}
.y12f{bottom:2.720000pt;}
.y5a{bottom:2.877333pt;}
.yc{bottom:2.880000pt;}
.y10{bottom:2.920000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:3.520000pt;}
.y11a{bottom:4.160000pt;}
.y172{bottom:4.453333pt;}
.y115{bottom:6.400000pt;}
.yc1{bottom:8.960000pt;}
.y155{bottom:8.986667pt;}
.y133{bottom:9.440000pt;}
.y1ab{bottom:9.466667pt;}
.y11f{bottom:9.600000pt;}
.yc2{bottom:10.080000pt;}
.y156{bottom:10.266667pt;}
.y56{bottom:14.106667pt;}
.y132{bottom:16.320000pt;}
.y12e{bottom:16.480000pt;}
.y174{bottom:16.506667pt;}
.y13b{bottom:16.520000pt;}
.y20{bottom:17.920000pt;}
.y171{bottom:18.213333pt;}
.yb{bottom:18.240000pt;}
.y12{bottom:19.520000pt;}
.y114{bottom:21.760000pt;}
.y7{bottom:21.920000pt;}
.y55{bottom:22.586667pt;}
.y186{bottom:23.200000pt;}
.y139{bottom:23.360000pt;}
.y2{bottom:24.346667pt;}
.y11e{bottom:24.960000pt;}
.y131{bottom:30.080000pt;}
.y12d{bottom:30.240000pt;}
.y13a{bottom:30.280000pt;}
.y1f{bottom:31.680000pt;}
.y16f{bottom:32.546667pt;}
.y59{bottom:33.339010pt;}
.ya{bottom:33.600000pt;}
.y119{bottom:34.720000pt;}
.y54{bottom:36.026667pt;}
.y113{bottom:36.960000pt;}
.y136{bottom:37.160000pt;}
.y6{bottom:40.320000pt;}
.y138{bottom:44.000000pt;}
.y1e{bottom:45.600000pt;}
.y16a{bottom:46.653333pt;}
.y118{bottom:50.080000pt;}
.y12b{bottom:50.880000pt;}
.y135{bottom:50.920000pt;}
.y5b{bottom:51.520000pt;}
.y112{bottom:52.320000pt;}
.y53{bottom:54.426667pt;}
.y11d{bottom:55.680000pt;}
.y1d{bottom:59.360000pt;}
.y117{bottom:65.466667pt;}
.y111{bottom:67.680000pt;}
.y11c{bottom:71.040000pt;}
.y1c{bottom:73.120000pt;}
.y16b{bottom:79.066667pt;}
.y170{bottom:80.386667pt;}
.y26{bottom:80.480000pt;}
.y51{bottom:80.960000pt;}
.y168{bottom:82.720000pt;}
.y110{bottom:83.040000pt;}
.y1c5{bottom:83.680000pt;}
.ybf{bottom:84.800000pt;}
.y9b{bottom:85.600000pt;}
.y10e{bottom:85.920000pt;}
.y1b{bottom:86.880000pt;}
.yf6{bottom:89.440000pt;}
.y1e0{bottom:89.600000pt;}
.y14a{bottom:90.240000pt;}
.y47{bottom:93.120000pt;}
.y25{bottom:95.520000pt;}
.y50{bottom:96.320000pt;}
.y167{bottom:98.080000pt;}
.y1a9{bottom:98.400000pt;}
.y1c4{bottom:99.040000pt;}
.ybe{bottom:100.160000pt;}
.y1a{bottom:100.800000pt;}
.y9a{bottom:100.960000pt;}
.y10d{bottom:101.280000pt;}
.yf5{bottom:104.832000pt;}
.y1df{bottom:104.992000pt;}
.y149{bottom:105.632000pt;}
.y46{bottom:108.512000pt;}
.y24{bottom:109.280000pt;}
.y16c{bottom:111.520000pt;}
.y4f{bottom:111.552000pt;}
.y166{bottom:113.472000pt;}
.y1a8{bottom:113.792000pt;}
.y1c3{bottom:114.432000pt;}
.y19{bottom:114.560000pt;}
.ybd{bottom:115.392000pt;}
.y99{bottom:116.352000pt;}
.y10c{bottom:116.672000pt;}
.yf4{bottom:120.192000pt;}
.y1de{bottom:120.352000pt;}
.y148{bottom:120.992000pt;}
.y23{bottom:123.040000pt;}
.y45{bottom:123.872000pt;}
.y4e{bottom:126.912000pt;}
.y18{bottom:128.320000pt;}
.y165{bottom:128.832000pt;}
.y1a7{bottom:129.152000pt;}
.y1c2{bottom:129.632000pt;}
.ybc{bottom:130.752000pt;}
.y98{bottom:131.712000pt;}
.y10b{bottom:132.032000pt;}
.yf3{bottom:135.546667pt;}
.y1dd{bottom:135.706667pt;}
.y147{bottom:136.186667pt;}
.y22{bottom:137.120000pt;}
.y44{bottom:139.226667pt;}
.y17{bottom:142.080000pt;}
.y4d{bottom:142.266667pt;}
.y16d{bottom:143.933333pt;}
.y164{bottom:144.186667pt;}
.y1a6{bottom:144.346667pt;}
.y1c1{bottom:144.986667pt;}
.ybb{bottom:146.106667pt;}
.y97{bottom:147.066667pt;}
.y10a{bottom:147.226667pt;}
.yf2{bottom:150.746667pt;}
.y27{bottom:150.880000pt;}
.y1dc{bottom:151.066667pt;}
.y146{bottom:151.546667pt;}
.y21{bottom:152.160000pt;}
.y43{bottom:154.586667pt;}
.y16{bottom:156.000000pt;}
.y4c{bottom:157.626667pt;}
.y163{bottom:159.386667pt;}
.y1a5{bottom:159.706667pt;}
.y1c0{bottom:160.346667pt;}
.yba{bottom:161.466667pt;}
.y96{bottom:162.266667pt;}
.y109{bottom:162.586667pt;}
.yf1{bottom:166.106667pt;}
.y1db{bottom:166.266667pt;}
.y145{bottom:166.906667pt;}
.y15{bottom:169.760000pt;}
.y42{bottom:169.946667pt;}
.y4b{bottom:172.986667pt;}
.y162{bottom:174.746667pt;}
.y1a4{bottom:175.066667pt;}
.y1bf{bottom:175.706667pt;}
.y16e{bottom:176.386667pt;}
.yb9{bottom:176.826667pt;}
.y95{bottom:177.626667pt;}
.y108{bottom:177.946667pt;}
.yf0{bottom:181.466667pt;}
.y1da{bottom:181.626667pt;}
.y144{bottom:182.266667pt;}
.y14{bottom:183.520000pt;}
.y41{bottom:185.146667pt;}
.y4a{bottom:188.346667pt;}
.y161{bottom:190.106667pt;}
.y1a3{bottom:190.426667pt;}
.y1be{bottom:191.066667pt;}
.yb8{bottom:192.186667pt;}
.y94{bottom:192.986667pt;}
.y107{bottom:193.306667pt;}
.yef{bottom:196.826667pt;}
.y1d9{bottom:196.986667pt;}
.y143{bottom:197.626667pt;}
.y40{bottom:200.506667pt;}
.y49{bottom:203.546667pt;}
.y160{bottom:205.466667pt;}
.y1bd{bottom:206.266667pt;}
.y93{bottom:208.346667pt;}
.y106{bottom:208.666667pt;}
.yee{bottom:212.186667pt;}
.y1d8{bottom:212.346667pt;}
.y142{bottom:212.986667pt;}
.y3f{bottom:215.866667pt;}
.y1a2{bottom:217.946667pt;}
.y48{bottom:218.266667pt;}
.y15f{bottom:220.826667pt;}
.y1bc{bottom:221.626667pt;}
.y92{bottom:223.706667pt;}
.y105{bottom:223.866667pt;}
.yed{bottom:227.546667pt;}
.y1d7{bottom:227.706667pt;}
.y141{bottom:228.186667pt;}
.y3e{bottom:231.226667pt;}
.y1a1{bottom:232.506667pt;}
.y15e{bottom:236.186667pt;}
.y1bb{bottom:236.986667pt;}
.y91{bottom:238.906667pt;}
.y104{bottom:239.226667pt;}
.yb7{bottom:240.026667pt;}
.yec{bottom:242.746667pt;}
.y1d6{bottom:243.066667pt;}
.y140{bottom:243.546667pt;}
.y3d{bottom:246.586667pt;}
.y1a0{bottom:246.906667pt;}
.y15d{bottom:251.386667pt;}
.y1ba{bottom:252.346667pt;}
.y90{bottom:254.266667pt;}
.y103{bottom:254.586667pt;}
.yb6{bottom:255.386667pt;}
.yeb{bottom:258.106667pt;}
.y1d5{bottom:258.266667pt;}
.y13f{bottom:258.906667pt;}
.y19f{bottom:261.306667pt;}
.y3c{bottom:261.786667pt;}
.y15c{bottom:266.746667pt;}
.y1b9{bottom:267.706667pt;}
.y8f{bottom:269.626667pt;}
.y102{bottom:269.946667pt;}
.yb5{bottom:271.706667pt;}
.yea{bottom:273.466667pt;}
.y1d4{bottom:273.626667pt;}
.y13e{bottom:274.266667pt;}
.y19e{bottom:275.866667pt;}
.y3b{bottom:277.146667pt;}
.y1b8{bottom:283.066667pt;}
.y8e{bottom:284.986667pt;}
.y101{bottom:285.306667pt;}
.yb4{bottom:287.066667pt;}
.ye9{bottom:288.826667pt;}
.y1d3{bottom:288.986667pt;}
.y13d{bottom:289.626667pt;}
.y19d{bottom:290.266667pt;}
.y3a{bottom:292.506667pt;}
.y15b{bottom:297.466667pt;}
.y1b7{bottom:298.266667pt;}
.y8d{bottom:300.346667pt;}
.y100{bottom:300.666667pt;}
.yb3{bottom:302.266667pt;}
.ye8{bottom:304.186667pt;}
.y1d2{bottom:304.346667pt;}
.y19c{bottom:304.826667pt;}
.y13c{bottom:304.986667pt;}
.y39{bottom:307.866667pt;}
.y15a{bottom:309.946667pt;}
.y169{bottom:310.080000pt;}
.y1b6{bottom:313.626667pt;}
.y8c{bottom:315.706667pt;}
.yff{bottom:315.866667pt;}
.y134{bottom:317.306667pt;}
.yb2{bottom:317.626667pt;}
.y19b{bottom:319.226667pt;}
.ye7{bottom:319.546667pt;}
.y1d1{bottom:319.706667pt;}
.y38{bottom:323.226667pt;}
.y1b5{bottom:328.986667pt;}
.y8b{bottom:330.946667pt;}
.yfe{bottom:331.266667pt;}
.yb1{bottom:333.026667pt;}
.y19a{bottom:333.826667pt;}
.ye6{bottom:334.786667pt;}
.y1d0{bottom:335.106667pt;}
.y37{bottom:338.626667pt;}
.y1b4{bottom:344.386667pt;}
.y8a{bottom:346.306667pt;}
.yfd{bottom:346.626667pt;}
.y199{bottom:348.226667pt;}
.yb0{bottom:348.386667pt;}
.ye5{bottom:350.146667pt;}
.y1cf{bottom:350.306667pt;}
.y36{bottom:353.826667pt;}
.y137{bottom:358.786667pt;}
.y1b3{bottom:359.746667pt;}
.y89{bottom:361.666667pt;}
.yfc{bottom:361.986667pt;}
.y198{bottom:362.626667pt;}
.yaf{bottom:363.746667pt;}
.ye4{bottom:365.506667pt;}
.y1ce{bottom:365.666667pt;}
.y35{bottom:369.186667pt;}
.y1b2{bottom:375.106667pt;}
.y88{bottom:377.026667pt;}
.y197{bottom:377.186667pt;}
.yfb{bottom:377.346667pt;}
.yae{bottom:378.946667pt;}
.ye3{bottom:380.866667pt;}
.y1cd{bottom:381.026667pt;}
.y34{bottom:384.546667pt;}
.y1b1{bottom:390.306667pt;}
.y196{bottom:391.586667pt;}
.y87{bottom:392.386667pt;}
.yfa{bottom:392.706667pt;}
.yad{bottom:394.306667pt;}
.ye2{bottom:396.226667pt;}
.y1cc{bottom:396.386667pt;}
.y33{bottom:399.906667pt;}
.y1b0{bottom:405.666667pt;}
.y195{bottom:406.146667pt;}
.y86{bottom:407.746667pt;}
.yac{bottom:409.666667pt;}
.ye1{bottom:411.586667pt;}
.y1cb{bottom:411.746667pt;}
.y12a{bottom:413.986667pt;}
.y11b{bottom:414.946667pt;}
.y32{bottom:415.266667pt;}
.y1af{bottom:421.026667pt;}
.yf9{bottom:423.266667pt;}
.y85{bottom:424.866667pt;}
.yab{bottom:425.026667pt;}
.ye0{bottom:426.786667pt;}
.y1ca{bottom:427.106667pt;}
.y31{bottom:430.626667pt;}
.y194{bottom:434.306667pt;}
.y1ae{bottom:434.786667pt;}
.yf8{bottom:438.626667pt;}
.y84{bottom:440.386667pt;}
.y130{bottom:441.666667pt;}
.ydf{bottom:442.146667pt;}
.y1c9{bottom:442.306667pt;}
.y30{bottom:445.826667pt;}
.y83{bottom:455.746667pt;}
.yde{bottom:457.506667pt;}
.y1c8{bottom:457.666667pt;}
.y2f{bottom:461.186667pt;}
.y193{bottom:462.626667pt;}
.y1ad{bottom:463.746667pt;}
.y82{bottom:470.946667pt;}
.ydd{bottom:472.866667pt;}
.y1c7{bottom:473.026667pt;}
.y2e{bottom:476.546667pt;}
.y192{bottom:477.026667pt;}
.y12c{bottom:482.946667pt;}
.yaa{bottom:486.306667pt;}
.y81{bottom:488.226667pt;}
.y1c6{bottom:488.386667pt;}
.y191{bottom:491.586667pt;}
.y2d{bottom:491.906667pt;}
.y116{bottom:497.986667pt;}
.ya9{bottom:501.666667pt;}
.ydc{bottom:503.426667pt;}
.y80{bottom:503.746667pt;}
.y159{bottom:504.866667pt;}
.y190{bottom:505.986667pt;}
.y1ac{bottom:506.466667pt;}
.y2c{bottom:507.266667pt;}
.ya8{bottom:517.026667pt;}
.ydb{bottom:518.786667pt;}
.y7f{bottom:518.946667pt;}
.y158{bottom:520.066667pt;}
.y18f{bottom:520.546667pt;}
.y2b{bottom:522.466667pt;}
.y129{bottom:524.386667pt;}
.ya7{bottom:532.386667pt;}
.yda{bottom:534.146667pt;}
.y7e{bottom:534.306667pt;}
.y18e{bottom:534.946667pt;}
.y157{bottom:535.426667pt;}
.y2a{bottom:537.826667pt;}
.y128{bottom:538.146667pt;}
.ya6{bottom:547.746667pt;}
.y154{bottom:547.906667pt;}
.y1aa{bottom:549.186667pt;}
.y18d{bottom:549.346667pt;}
.yd9{bottom:549.506667pt;}
.y7d{bottom:549.666667pt;}
.y29{bottom:553.826667pt;}
.y127{bottom:557.213333pt;}
.ya5{bottom:562.973333pt;}
.y18c{bottom:563.933333pt;}
.yd8{bottom:564.893333pt;}
.y7c{bottom:565.053333pt;}
.y28{bottom:571.613333pt;}
.y126{bottom:572.573333pt;}
.ya4{bottom:578.333333pt;}
.yd7{bottom:580.253333pt;}
.y7b{bottom:580.413333pt;}
.y153{bottom:580.733333pt;}
.y13{bottom:584.733333pt;}
.y125{bottom:587.933333pt;}
.y18b{bottom:592.893333pt;}
.ya3{bottom:593.693333pt;}
.yd6{bottom:595.453333pt;}
.y7a{bottom:595.773333pt;}
.y152{bottom:596.093333pt;}
.y124{bottom:602.973333pt;}
.y18a{bottom:607.293333pt;}
.ya2{bottom:609.053333pt;}
.yd5{bottom:610.813333pt;}
.y79{bottom:610.973333pt;}
.y151{bottom:611.453333pt;}
.y123{bottom:617.053333pt;}
.yf7{bottom:621.533333pt;}
.y189{bottom:621.693333pt;}
.ya1{bottom:624.413333pt;}
.yd4{bottom:626.173333pt;}
.y78{bottom:626.333333pt;}
.y150{bottom:626.813333pt;}
.y122{bottom:632.413333pt;}
.y188{bottom:636.253333pt;}
.y14f{bottom:639.293333pt;}
.ya0{bottom:639.613333pt;}
.yd3{bottom:641.533333pt;}
.y77{bottom:641.693333pt;}
.y121{bottom:647.613333pt;}
.y187{bottom:650.653333pt;}
.y9f{bottom:654.973333pt;}
.yd2{bottom:656.893333pt;}
.y76{bottom:657.053333pt;}
.y14e{bottom:657.693333pt;}
.y120{bottom:660.093333pt;}
.y185{bottom:665.213333pt;}
.y9e{bottom:670.333333pt;}
.yd1{bottom:672.253333pt;}
.y75{bottom:672.413333pt;}
.y14d{bottom:673.053333pt;}
.y10f{bottom:684.253333pt;}
.y9d{bottom:685.693333pt;}
.yd0{bottom:687.453333pt;}
.y74{bottom:687.773333pt;}
.y14c{bottom:688.413333pt;}
.y14b{bottom:700.893333pt;}
.y9c{bottom:702.813333pt;}
.y73{bottom:702.973333pt;}
.ycf{bottom:718.173333pt;}
.y72{bottom:718.333333pt;}
.y184{bottom:721.053333pt;}
.yce{bottom:733.533333pt;}
.y71{bottom:733.693333pt;}
.y11{bottom:748.733333pt;}
.ycd{bottom:748.893333pt;}
.y70{bottom:749.053333pt;}
.y183{bottom:749.213333pt;}
.y182{bottom:763.773333pt;}
.ycc{bottom:764.093333pt;}
.y6f{bottom:764.413333pt;}
.y181{bottom:778.173333pt;}
.yf{bottom:779.453333pt;}
.y6e{bottom:779.613333pt;}
.y180{bottom:792.773333pt;}
.ycb{bottom:794.853333pt;}
.y6d{bottom:795.013333pt;}
.ye{bottom:795.493333pt;}
.y17f{bottom:807.173333pt;}
.yca{bottom:810.213333pt;}
.y6c{bottom:810.373333pt;}
.y17e{bottom:821.573333pt;}
.yc9{bottom:825.573333pt;}
.y6b{bottom:825.733333pt;}
.yd{bottom:826.853333pt;}
.y17d{bottom:836.133333pt;}
.y1e6{bottom:838.213333pt;}
.yc8{bottom:840.933333pt;}
.y6a{bottom:841.093333pt;}
.y17c{bottom:850.533333pt;}
.y1e5{bottom:853.573333pt;}
.y69{bottom:856.453333pt;}
.yc7{bottom:857.253333pt;}
.y17b{bottom:865.093333pt;}
.y1e4{bottom:868.773333pt;}
.y68{bottom:871.653333pt;}
.yc6{bottom:872.613333pt;}
.y9{bottom:872.773333pt;}
.y17a{bottom:879.493333pt;}
.y1e3{bottom:884.133333pt;}
.y67{bottom:887.013333pt;}
.yc5{bottom:887.813333pt;}
.y179{bottom:894.053333pt;}
.y1e2{bottom:899.493333pt;}
.y66{bottom:902.373333pt;}
.yc4{bottom:903.173333pt;}
.y178{bottom:908.453333pt;}
.y1e1{bottom:914.853333pt;}
.y65{bottom:917.733333pt;}
.yc3{bottom:918.533333pt;}
.y5{bottom:918.853333pt;}
.y177{bottom:922.853333pt;}
.yc0{bottom:931.013333pt;}
.y64{bottom:933.093333pt;}
.y176{bottom:937.413333pt;}
.y63{bottom:948.453333pt;}
.y175{bottom:951.813333pt;}
.y62{bottom:963.653333pt;}
.y4{bottom:977.573333pt;}
.y61{bottom:979.013333pt;}
.y173{bottom:993.893333pt;}
.y60{bottom:994.373333pt;}
.y1{bottom:995.973333pt;}
.y52{bottom:1004.933333pt;}
.y5f{bottom:1009.760000pt;}
.y5e{bottom:1025.120000pt;}
.y5d{bottom:1040.480000pt;}
.y5c{bottom:1055.680000pt;}
.h2a{height:13.760000pt;}
.h3d{height:13.792000pt;}
.h3c{height:13.920000pt;}
.h3f{height:13.952000pt;}
.h1e{height:14.666747pt;}
.h43{height:15.200000pt;}
.h42{height:15.360000pt;}
.hb{height:15.392000pt;}
.h34{height:15.520000pt;}
.h3e{height:27.520000pt;}
.h2f{height:27.680000pt;}
.h3b{height:27.712000pt;}
.h1c{height:28.035000pt;}
.h22{height:29.760000pt;}
.h32{height:29.920000pt;}
.h36{height:29.952000pt;}
.ha{height:30.720000pt;}
.h13{height:33.328125pt;}
.he{height:34.710938pt;}
.h3a{height:35.040000pt;}
.h18{height:35.782187pt;}
.h17{height:37.479688pt;}
.h21{height:39.269375pt;}
.h20{height:40.054688pt;}
.h2e{height:41.280000pt;}
.h2d{height:41.440000pt;}
.h31{height:41.472000pt;}
.h1d{height:43.215000pt;}
.h14{height:44.327188pt;}
.h1b{height:44.722500pt;}
.h35{height:44.768125pt;}
.h15{height:45.156250pt;}
.h9{height:45.920000pt;}
.h6{height:46.080000pt;}
.h11{height:47.085938pt;}
.hc{height:47.109375pt;}
.h40{height:47.399375pt;}
.hf{height:47.406250pt;}
.h25{height:47.527375pt;}
.h2b{height:48.375000pt;}
.h29{height:51.250000pt;}
.h12{height:52.108438pt;}
.h7{height:52.134375pt;}
.h8{height:52.478750pt;}
.h41{height:53.406250pt;}
.h3{height:53.535000pt;}
.h4{height:55.200000pt;}
.h16{height:55.402500pt;}
.h1f{height:56.302083pt;}
.h5{height:64.500000pt;}
.h1a{height:66.750000pt;}
.h19{height:69.312000pt;}
.h27{height:79.072000pt;}
.h24{height:80.167188pt;}
.h33{height:80.608125pt;}
.h38{height:80.714792pt;}
.h2{height:83.072000pt;}
.h23{height:85.728125pt;}
.h28{height:90.080000pt;}
.h30{height:96.672000pt;}
.h26{height:99.072000pt;}
.h2c{height:110.400000pt;}
.h37{height:121.674792pt;}
.h10{height:163.360000pt;}
.h39{height:192.000000pt;}
.hd{height:194.720000pt;}
.h0{height:1121.120000pt;}
.h1{height:1121.333333pt;}
.w7{width:16.320000pt;}
.wa{width:26.666667pt;}
.w11{width:37.440000pt;}
.wc{width:41.120000pt;}
.w4{width:44.032000pt;}
.w13{width:49.440000pt;}
.w12{width:49.632000pt;}
.w20{width:66.080000pt;}
.w15{width:69.440000pt;}
.w14{width:74.592000pt;}
.wd{width:95.712000pt;}
.w1c{width:98.432000pt;}
.w1f{width:102.080000pt;}
.we{width:102.752000pt;}
.w1e{width:105.152000pt;}
.wf{width:107.712000pt;}
.w1d{width:122.752000pt;}
.w1b{width:131.712000pt;}
.w10{width:144.026667pt;}
.w19{width:150.586667pt;}
.w17{width:160.346667pt;}
.w6{width:216.386667pt;}
.w1a{width:230.786667pt;}
.w1{width:233.186667pt;}
.w21{width:274.626667pt;}
.wb{width:299.106667pt;}
.w16{width:330.080000pt;}
.w9{width:461.853333pt;}
.w8{width:463.453333pt;}
.w2{width:464.893333pt;}
.w18{width:533.253333pt;}
.w3{width:652.133333pt;}
.w5{width:696.160000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x8{left:8.160000pt;}
.x1d{left:9.600000pt;}
.x2f{left:10.554667pt;}
.x28{left:11.680000pt;}
.x32{left:13.600000pt;}
.x1a{left:14.560000pt;}
.x2d{left:15.680000pt;}
.x29{left:17.480000pt;}
.x26{left:18.720000pt;}
.x2c{left:19.680000pt;}
.x54{left:20.640000pt;}
.x2e{left:21.800000pt;}
.x40{left:23.200000pt;}
.x3c{left:24.640000pt;}
.xe{left:25.760000pt;}
.x30{left:27.200000pt;}
.x52{left:28.640000pt;}
.x31{left:29.594667pt;}
.x5c{left:33.920000pt;}
.x58{left:35.880000pt;}
.x41{left:36.992000pt;}
.x51{left:38.120000pt;}
.x5d{left:39.392000pt;}
.x45{left:40.346667pt;}
.x5f{left:41.600000pt;}
.x5b{left:43.040000pt;}
.x55{left:45.920000pt;}
.x1{left:48.000000pt;}
.x9{left:48.960000pt;}
.x3e{left:51.040000pt;}
.x21{left:52.640000pt;}
.x5a{left:55.400000pt;}
.x56{left:56.840000pt;}
.x4f{left:60.200000pt;}
.xa{left:62.560000pt;}
.x24{left:63.680000pt;}
.x59{left:64.826667pt;}
.x4c{left:66.280000pt;}
.x4a{left:69.320000pt;}
.x4e{left:71.232000pt;}
.x48{left:72.200000pt;}
.x36{left:74.080000pt;}
.x47{left:77.312000pt;}
.x4d{left:106.120000pt;}
.x4b{left:109.160000pt;}
.x49{left:112.200000pt;}
.x3d{left:115.493333pt;}
.x12{left:118.746667pt;}
.x17{left:119.706667pt;}
.x35{left:123.360000pt;}
.x10{left:124.346667pt;}
.x37{left:128.800000pt;}
.x25{left:130.752000pt;}
.x22{left:134.906667pt;}
.x33{left:154.120000pt;}
.x3f{left:155.066667pt;}
.x18{left:168.506667pt;}
.x5e{left:171.706667pt;}
.x38{left:186.440000pt;}
.x27{left:192.986667pt;}
.xf{left:196.986667pt;}
.x2{left:205.986667pt;}
.x42{left:209.946667pt;}
.x43{left:212.866667pt;}
.x23{left:213.946667pt;}
.x11{left:230.746667pt;}
.x50{left:232.866667pt;}
.x57{left:240.066667pt;}
.x7{left:264.386667pt;}
.x60{left:276.866667pt;}
.x2a{left:280.066667pt;}
.x3{left:281.186667pt;}
.xd{left:283.906667pt;}
.x2b{left:329.506667pt;}
.x19{left:348.066667pt;}
.x44{left:361.186667pt;}
.x20{left:369.986667pt;}
.x13{left:382.666667pt;}
.x14{left:396.093333pt;}
.x62{left:403.613333pt;}
.xc{left:413.053333pt;}
.x3a{left:419.293333pt;}
.xb{left:426.653333pt;}
.x3b{left:432.573333pt;}
.x15{left:437.053333pt;}
.x61{left:441.533333pt;}
.x16{left:461.053333pt;}
.x4{left:464.893333pt;}
.x1b{left:467.613333pt;}
.x63{left:469.693333pt;}
.x46{left:512.413333pt;}
.x1c{left:617.733333pt;}
.x1f{left:634.693333pt;}
.x1e{left:635.813333pt;}
.x53{left:644.773333pt;}
.x6{left:700.133333pt;}
.x34{left:712.160000pt;}
.x39{left:743.040000pt;}
}




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