
    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_7918c4d999f172b05a99ae5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_ba9eb22aa6ef2da1f595adaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2425eb31e6a824b2b408f562.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_46e34b1e4e11b09010fd0a97.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_32765b4ed2ff146ea5b86472.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_cefb33517d026ed5cceaa20f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_f3b5efdd708a545c64393aef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_a08a7d9ae1be50bbd5e1f6ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6bfcc4524c57f2a2f26c9f4b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fceb4513287ccb3a3738db46.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_98d27447399755f7b57a7986.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_09325bdf3eab1e11807b337c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_66643b510c5872f692cc6207.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_4e6bae7ec19393430a68a0b7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.859375;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_3453bbfe717b7094ad007194.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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_0ccbb6321034402ebc4288f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.809570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v2{vertical-align:48.240000px;}
.v1{vertical-align:54.720000px;}
.ls21{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.657360px;}
.ls6{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.537840px;}
.lsa{letter-spacing:-0.345384px;}
.ls8{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.256968px;}
.ls1b{letter-spacing:-0.239040px;}
.ls5{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.107568px;}
.ls2{letter-spacing:-0.053784px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1e{letter-spacing:0.053784px;}
.ls9{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.160056px;}
.ls19{letter-spacing:0.179280px;}
.ls13{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252720px;}
.ls1d{letter-spacing:0.256968px;}
.lsb{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.358560px;}
.ls7{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.362232px;}
.lse{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.ls15{letter-spacing:1.440000px;}
.ls4{letter-spacing:4.140000px;}
.ls29{letter-spacing:6.480000px;}
.ls26{letter-spacing:8.640000px;}
.ls25{letter-spacing:8.981280px;}
.ls10{letter-spacing:10.800000px;}
.lsf{letter-spacing:18.000000px;}
.ls20{letter-spacing:28.224000px;}
.ls24{letter-spacing:39.197280px;}
.ls22{letter-spacing:66.581280px;}
.ls12{letter-spacing:135.576000px;}
.ls27{letter-spacing:151.896000px;}
.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;}
}
.ws22{word-spacing:-84.400056px;}
.ws20{word-spacing:-72.000000px;}
.ws21{word-spacing:-21.422232px;}
.ws0{word-spacing:-21.312720px;}
.ws7{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.714616px;}
.wsd{word-spacing:-18.792000px;}
.ws11{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.288000px;}
.ws1f{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.424000px;}
.ws1e{word-spacing:-17.064000px;}
.ws5{word-spacing:-16.200000px;}
.wsf{word-spacing:-15.624000px;}
.ws6{word-spacing:-15.552000px;}
.ws15{word-spacing:-15.298560px;}
.ws16{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.196968px;}
.ws13{word-spacing:-15.119280px;}
.ws1b{word-spacing:-14.993784px;}
.ws19{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.886216px;}
.ws18{word-spacing:-14.832432px;}
.ws17{word-spacing:-14.700960px;}
.ws14{word-spacing:-14.683032px;}
.ws12{word-spacing:-14.402160px;}
.ws1c{word-spacing:-14.282640px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:5.400000px;}
._13{margin-left:-13.116000px;}
._11{margin-left:-11.904000px;}
._f{margin-left:-10.536000px;}
._10{margin-left:-9.276000px;}
._12{margin-left:-7.872000px;}
._d{margin-left:-6.720000px;}
._c{margin-left:-4.560000px;}
._e{margin-left:-3.120000px;}
._5{margin-left:-1.512000px;}
._0{width:1.314720px;}
._9{width:3.168000px;}
._1c{width:4.366560px;}
._19{width:5.616000px;}
._1e{width:6.874560px;}
._1d{width:8.424000px;}
._8{width:10.281600px;}
._7{width:11.304000px;}
._18{width:12.456000px;}
._15{width:13.968000px;}
._16{width:15.389280px;}
._25{width:16.632000px;}
._22{width:19.368000px;}
._21{width:21.312000px;}
._26{width:22.464000px;}
._1a{width:23.616000px;}
._1b{width:25.416000px;}
._a{width:27.266400px;}
._6{width:28.704000px;}
._29{width:29.762880px;}
._27{width:31.248000px;}
._23{width:32.760000px;}
._24{width:33.785280px;}
._28{width:35.328000px;}
._3{width:36.720000px;}
._2{width:38.124000px;}
._17{width:39.168000px;}
._2f{width:40.608000px;}
._1f{width:42.336000px;}
._20{width:43.452000px;}
._2a{width:45.720000px;}
._2b{width:47.172000px;}
._2c{width:48.576000px;}
._4{width:82.836000px;}
._30{width:176.376000px;}
._14{width:190.800000px;}
._2e{width:194.376000px;}
._b{width:252.542880px;}
._1{width:1083.900000px;}
._2d{width:1800.456000px;}
.fc7{color:rgb(21,21,24);}
.fc4{color:transparent;}
.fc6{color:rgb(26,23,24);}
.fc3{color:rgb(0,46,103);}
.fc8{color:rgb(192,80,77);}
.fc5{color:rgb(22,54,93);}
.fc2{color:rgb(22,54,93);}
.fc1{color:rgb(31,73,125);}
.fcc{color:rgb(26,26,26);}
.fcb{color:rgb(14,14,14);}
.fca{color:rgb(33,33,33);}
.fc9{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs8{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y16d{bottom:-48.450000px;}
.y16c{bottom:-27.180000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.960000px;}
.y16b{bottom:9.180000px;}
.y13a{bottom:11.865000px;}
.y112{bottom:11.880000px;}
.y12d{bottom:11.910000px;}
.y130{bottom:12.045000px;}
.y10f{bottom:12.060000px;}
.y118{bottom:12.105000px;}
.y13b{bottom:12.225000px;}
.y113{bottom:12.240000px;}
.y12e{bottom:12.270000px;}
.y131{bottom:12.405000px;}
.y110{bottom:12.420000px;}
.y10d{bottom:12.435000px;}
.y119{bottom:12.465000px;}
.y108{bottom:13.140000px;}
.y2b{bottom:14.775000px;}
.y26{bottom:14.940000px;}
.y2f{bottom:17.085000px;}
.y13f{bottom:18.015000px;}
.yae{bottom:19.260000px;}
.yd5{bottom:19.290000px;}
.y106{bottom:22.356000px;}
.y31{bottom:22.875000px;}
.y16a{bottom:30.060000px;}
.y29{bottom:35.820000px;}
.y10b{bottom:38.340000px;}
.y2e{bottom:39.045000px;}
.yad{bottom:40.170000px;}
.y148{bottom:40.176000px;}
.y105{bottom:43.230000px;}
.y25{bottom:46.620000px;}
.y169{bottom:50.760000px;}
.y13e{bottom:52.785000px;}
.y32{bottom:52.920000px;}
.y44{bottom:57.060000px;}
.y157{bottom:60.870000px;}
.y2d{bottom:63.345000px;}
.y28{bottom:63.900000px;}
.y10a{bottom:64.260000px;}
.y104{bottom:64.290000px;}
.y13d{bottom:72.405000px;}
.y24{bottom:77.760000px;}
.y156{bottom:81.570000px;}
.y103{bottom:85.350000px;}
.y100{bottom:97.020000px;}
.y147{bottom:100.080000px;}
.y102{bottom:106.230000px;}
.y23{bottom:108.720000px;}
.y101{bottom:113.580000px;}
.yac{bottom:113.760000px;}
.y167{bottom:117.720000px;}
.y1bf{bottom:118.440000px;}
.yf9{bottom:120.600000px;}
.y18d{bottom:120.960000px;}
.y17d{bottom:123.840000px;}
.y1d8{bottom:124.020000px;}
.y64{bottom:126.180000px;}
.y154{bottom:127.080000px;}
.yc9{bottom:128.340000px;}
.y92{bottom:131.580000px;}
.ye1{bottom:131.940000px;}
.y20{bottom:138.996000px;}
.y22{bottom:139.905000px;}
.y22b{bottom:140.076000px;}
.y139{bottom:140.445000px;}
.y81{bottom:144.396000px;}
.yff{bottom:144.756000px;}
.y1d7{bottom:147.996000px;}
.yd3{bottom:151.050000px;}
.y20d{bottom:151.230000px;}
.y17c{bottom:154.830000px;}
.y1f2{bottom:155.190000px;}
.y153{bottom:158.250000px;}
.y43{bottom:158.619000px;}
.yc8{bottom:159.510000px;}
.y1be{bottom:160.230000px;}
.y19e{bottom:165.810000px;}
.y166{bottom:166.710000px;}
.y138{bottom:166.905000px;}
.yf8{bottom:169.590000px;}
.y18c{bottom:171.210000px;}
.y1d6{bottom:171.750000px;}
.y2c{bottom:175.725000px;}
.y63{bottom:180.390000px;}
.y91{bottom:180.750000px;}
.ye0{bottom:180.930000px;}
.yd2{bottom:182.370000px;}
.y1bd{bottom:183.990000px;}
.y1f{bottom:187.950000px;}
.y152{bottom:189.210000px;}
.yc7{bottom:190.470000px;}
.y80{bottom:193.350000px;}
.y137{bottom:193.545000px;}
.yfe{bottom:193.710000px;}
.y165{bottom:197.850000px;}
.y42{bottom:198.579000px;}
.y18b{bottom:202.350000px;}
.y22a{bottom:203.430000px;}
.y17b{bottom:203.970000px;}
.y1f1{bottom:204.330000px;}
.y1bc{bottom:207.930000px;}
.y19d{bottom:209.730000px;}
.y90{bottom:211.710000px;}
.y20c{bottom:213.330000px;}
.yd1{bottom:213.510000px;}
.y1d5{bottom:214.770000px;}
.yf7{bottom:218.730000px;}
.y136{bottom:220.185000px;}
.y151{bottom:220.350000px;}
.yc6{bottom:221.610000px;}
.y164{bottom:228.810000px;}
.ydf{bottom:229.890000px;}
.y18a{bottom:233.310000px;}
.y229{bottom:234.390000px;}
.y62{bottom:234.570000px;}
.y17a{bottom:234.930000px;}
.y1f0{bottom:235.290000px;}
.y1e{bottom:237.090000px;}
.y1d4{bottom:240.330000px;}
.y7f{bottom:242.850000px;}
.yd0{bottom:244.470000px;}
.y135{bottom:246.825000px;}
.y1bb{bottom:249.690000px;}
.y150{bottom:251.310000px;}
.yc5{bottom:252.570000px;}
.y19c{bottom:253.650000px;}
.y163{bottom:259.950000px;}
.y1d3{bottom:264.090000px;}
.y189{bottom:264.450000px;}
.y228{bottom:265.530000px;}
.y179{bottom:265.890000px;}
.y1ef{bottom:266.430000px;}
.yf6{bottom:267.690000px;}
.y1ba{bottom:273.450000px;}
.y134{bottom:273.465000px;}
.y8f{bottom:273.810000px;}
.y20b{bottom:275.430000px;}
.ycf{bottom:275.610000px;}
.yde{bottom:279.030000px;}
.y14f{bottom:282.450000px;}
.yc4{bottom:283.530000px;}
.y1d{bottom:286.050000px;}
.y61{bottom:288.750000px;}
.y162{bottom:290.910000px;}
.y7e{bottom:291.810000px;}
.y188{bottom:295.410000px;}
.y227{bottom:296.490000px;}
.y178{bottom:297.030000px;}
.y1ee{bottom:297.390000px;}
.y19b{bottom:297.750000px;}
.yf5{bottom:298.830000px;}
.y133{bottom:300.105000px;}
.y14e{bottom:302.790000px;}
.y8e{bottom:304.950000px;}
.y1d2{bottom:306.030000px;}
.yce{bottom:306.570000px;}
.ydd{bottom:309.990000px;}
.yc3{bottom:314.670000px;}
.y1b9{bottom:315.210000px;}
.y1c{bottom:317.550000px;}
.y161{bottom:322.050000px;}
.y41{bottom:326.379000px;}
.y187{bottom:326.550000px;}
.y132{bottom:326.745000px;}
.y226{bottom:327.630000px;}
.y177{bottom:327.990000px;}
.y1ed{bottom:328.530000px;}
.yf4{bottom:329.790000px;}
.y14d{bottom:334.110000px;}
.y8d{bottom:335.910000px;}
.y20a{bottom:337.530000px;}
.ycd{bottom:337.710000px;}
.y1b8{bottom:339.150000px;}
.y7d{bottom:340.950000px;}
.ydc{bottom:341.130000px;}
.y19a{bottom:341.670000px;}
.y60{bottom:343.110000px;}
.y1b{bottom:348.510000px;}
.y160{bottom:353.010000px;}
.y12f{bottom:353.385000px;}
.y1d1{bottom:353.550000px;}
.y186{bottom:357.510000px;}
.y225{bottom:358.590000px;}
.yab{bottom:359.130000px;}
.y1ec{bottom:359.490000px;}
.yf3{bottom:360.930000px;}
.yc2{bottom:363.990000px;}
.y40{bottom:365.079000px;}
.y14c{bottom:365.610000px;}
.y5f{bottom:366.870000px;}
.y8c{bottom:367.050000px;}
.ycc{bottom:368.670000px;}
.yd4{bottom:370.125000px;}
.y7c{bottom:371.910000px;}
.ydb{bottom:372.090000px;}
.y1a{bottom:379.650000px;}
.y12c{bottom:380.025000px;}
.y155{bottom:382.005000px;}
.y15f{bottom:384.150000px;}
.y199{bottom:385.590000px;}
.y1b7{bottom:388.155000px;}
.y185{bottom:388.695000px;}
.y224{bottom:389.775000px;}
.yaa{bottom:390.135000px;}
.y1eb{bottom:390.675000px;}
.yf2{bottom:391.935000px;}
.yc1{bottom:395.175000px;}
.y1d0{bottom:395.355000px;}
.y8b{bottom:398.055000px;}
.y209{bottom:399.675000px;}
.ycb{bottom:399.855000px;}
.y7b{bottom:403.095000px;}
.yda{bottom:403.275000px;}
.y12b{bottom:406.695000px;}
.y19{bottom:410.655000px;}
.y15e{bottom:415.155000px;}
.y5e{bottom:418.395000px;}
.y1b6{bottom:419.295000px;}
.y184{bottom:419.655000px;}
.y223{bottom:420.735000px;}
.ya9{bottom:421.275000px;}
.y1ea{bottom:421.635000px;}
.yf1{bottom:423.075000px;}
.yc0{bottom:426.135000px;}
.y8a{bottom:429.195000px;}
.y198{bottom:429.735000px;}
.y208{bottom:430.815000px;}
.y12a{bottom:433.335000px;}
.y7a{bottom:434.055000px;}
.y18{bottom:441.795000px;}
.y1cf{bottom:443.055000px;}
.y15d{bottom:446.295000px;}
.yfd{bottom:447.195000px;}
.y183{bottom:450.795000px;}
.y222{bottom:451.695000px;}
.ya8{bottom:452.235000px;}
.y3f{bottom:452.595000px;}
.y1e9{bottom:452.775000px;}
.yf0{bottom:454.035000px;}
.ybf{bottom:457.275000px;}
.y129{bottom:459.795000px;}
.y89{bottom:460.155000px;}
.y1b5{bottom:461.055000px;}
.y207{bottom:461.775000px;}
.y5d{bottom:464.115000px;}
.y79{bottom:465.195000px;}
.y1ce{bottom:466.815000px;}
.y17{bottom:472.755000px;}
.y197{bottom:473.655000px;}
.y15c{bottom:477.255000px;}
.yfc{bottom:478.155000px;}
.y182{bottom:481.755000px;}
.ya7{bottom:483.375000px;}
.y1e8{bottom:483.735000px;}
.y1b4{bottom:484.815000px;}
.yef{bottom:485.175000px;}
.y30{bottom:485.340000px;}
.y221{bottom:485.355000px;}
.y128{bottom:486.435000px;}
.ybe{bottom:488.235000px;}
.y1cd{bottom:490.575000px;}
.y88{bottom:491.295000px;}
.y206{bottom:492.915000px;}
.y78{bottom:496.155000px;}
.y176{bottom:501.375000px;}
.y3e{bottom:501.735000px;}
.y16{bottom:503.895000px;}
.y15b{bottom:508.395000px;}
.y1b3{bottom:508.575000px;}
.yfb{bottom:509.295000px;}
.y5c{bottom:510.015000px;}
.y181{bottom:512.895000px;}
.y127{bottom:513.075000px;}
.ya6{bottom:514.335000px;}
.y1cc{bottom:514.515000px;}
.y1e7{bottom:517.395000px;}
.y196{bottom:517.575000px;}
.y220{bottom:519.015000px;}
.ybd{bottom:519.375000px;}
.y87{bottom:522.255000px;}
.y205{bottom:523.875000px;}
.y77{bottom:527.295000px;}
.y175{bottom:532.335000px;}
.y1b2{bottom:532.515000px;}
.y2a{bottom:533.580000px;}
.y5b{bottom:533.775000px;}
.yee{bottom:534.135000px;}
.y15{bottom:534.855000px;}
.y1cb{bottom:538.275000px;}
.y126{bottom:539.715000px;}
.yfa{bottom:540.255000px;}
.y180{bottom:543.855000px;}
.ya5{bottom:545.475000px;}
.y21f{bottom:550.155000px;}
.ybc{bottom:550.335000px;}
.y3d{bottom:550.695000px;}
.y5a{bottom:554.835000px;}
.y1b1{bottom:556.275000px;}
.y76{bottom:558.255000px;}
.y15a{bottom:559.515000px;}
.y195{bottom:561.675000px;}
.y174{bottom:563.475000px;}
.yed{bottom:565.275000px;}
.y14{bottom:565.995000px;}
.y125{bottom:566.355000px;}
.y1e6{bottom:569.055000px;}
.y86{bottom:571.395000px;}
.y59{bottom:575.895000px;}
.ya4{bottom:576.435000px;}
.y204{bottom:578.595000px;}
.y1b0{bottom:580.035000px;}
.y21e{bottom:581.115000px;}
.ybb{bottom:581.475000px;}
.y3c{bottom:581.835000px;}
.y75{bottom:589.395000px;}
.y124{bottom:592.995000px;}
.y173{bottom:594.435000px;}
.y17f{bottom:594.975000px;}
.yec{bottom:596.235000px;}
.y13{bottom:596.955000px;}
.y1e5{bottom:600.195000px;}
.y85{bottom:602.355000px;}
.y1ca{bottom:603.795000px;}
.y194{bottom:605.595000px;}
.ya3{bottom:607.575000px;}
.y146{bottom:608.115000px;}
.y21d{bottom:612.255000px;}
.yba{bottom:612.435000px;}
.y3b{bottom:612.780000px;}
.y159{bottom:613.695000px;}
.y58{bottom:618.195000px;}
.y123{bottom:619.635000px;}
.y74{bottom:620.355000px;}
.y1af{bottom:621.795000px;}
.y172{bottom:625.575000px;}
.yeb{bottom:627.195000px;}
.y1c9{bottom:627.735000px;}
.y12{bottom:628.095000px;}
.y1e4{bottom:631.155000px;}
.y203{bottom:633.135000px;}
.y84{bottom:633.495000px;}
.y17e{bottom:636.735000px;}
.ya2{bottom:638.535000px;}
.y145{bottom:639.075000px;}
.y57{bottom:639.255000px;}
.y21c{bottom:643.245000px;}
.yb9{bottom:643.605000px;}
.y3a{bottom:643.956000px;}
.y27{bottom:645.405000px;}
.y1ae{bottom:645.765000px;}
.y122{bottom:646.305000px;}
.y193{bottom:649.725000px;}
.y73{bottom:651.525000px;}
.y171{bottom:656.565000px;}
.yea{bottom:658.365000px;}
.y11{bottom:659.085000px;}
.y56{bottom:660.345000px;}
.y1e3{bottom:662.325000px;}
.y202{bottom:664.305000px;}
.y83{bottom:664.485000px;}
.y158{bottom:665.925000px;}
.y1ad{bottom:669.525000px;}
.ya1{bottom:669.705000px;}
.y144{bottom:670.245000px;}
.y121{bottom:672.945000px;}
.y21b{bottom:674.385000px;}
.yb8{bottom:674.565000px;}
.y39{bottom:674.916000px;}
.y168{bottom:682.305000px;}
.y72{bottom:682.485000px;}
.y170{bottom:687.705000px;}
.ye9{bottom:689.325000px;}
.y10{bottom:690.225000px;}
.y143{bottom:691.125000px;}
.y192{bottom:693.105000px;}
.y1c8{bottom:693.285000px;}
.y201{bottom:695.265000px;}
.y82{bottom:695.625000px;}
.y120{bottom:699.585000px;}
.ya0{bottom:700.665000px;}
.y55{bottom:703.365000px;}
.y21a{bottom:705.345000px;}
.yb7{bottom:705.705000px;}
.y1ac{bottom:711.285000px;}
.y71{bottom:713.625000px;}
.y1c7{bottom:717.045000px;}
.y16f{bottom:718.665000px;}
.ye8{bottom:720.465000px;}
.yf{bottom:721.185000px;}
.y11f{bottom:726.045000px;}
.y200{bottom:726.405000px;}
.y142{bottom:726.585000px;}
.y9f{bottom:731.805000px;}
.y191{bottom:734.325000px;}
.y1ab{bottom:735.045000px;}
.y219{bottom:736.485000px;}
.yb6{bottom:736.665000px;}
.y1e2{bottom:742.245000px;}
.y141{bottom:743.145000px;}
.y70{bottom:744.585000px;}
.y54{bottom:749.265000px;}
.y16e{bottom:749.805000px;}
.ye7{bottom:751.425000px;}
.ye{bottom:752.325000px;}
.y11e{bottom:752.685000px;}
.y1ff{bottom:757.365000px;}
.y1c6{bottom:758.805000px;}
.y9e{bottom:762.765000px;}
.y218{bottom:767.445000px;}
.yb5{bottom:767.805000px;}
.y21{bottom:768.885000px;}
.y38{bottom:773.016000px;}
.y1e1{bottom:773.385000px;}
.y6f{bottom:775.545000px;}
.y53{bottom:776.445000px;}
.y1aa{bottom:776.805000px;}
.y11d{bottom:779.325000px;}
.yd9{bottom:780.765000px;}
.y1c5{bottom:782.745000px;}
.yd{bottom:783.285000px;}
.y1fe{bottom:788.505000px;}
.y190{bottom:788.685000px;}
.y9d{bottom:793.905000px;}
.y217{bottom:798.585000px;}
.yb4{bottom:798.765000px;}
.y52{bottom:800.205000px;}
.ye6{bottom:800.565000px;}
.y1a9{bottom:800.745000px;}
.y37{bottom:804.156000px;}
.y1e0{bottom:804.345000px;}
.y11c{bottom:805.965000px;}
.y6e{bottom:806.685000px;}
.yd8{bottom:811.905000px;}
.yc{bottom:814.245000px;}
.y1fd{bottom:819.465000px;}
.y18f{bottom:819.645000px;}
.y51{bottom:824.505000px;}
.y9c{bottom:824.865000px;}
.y216{bottom:829.545000px;}
.yb3{bottom:829.905000px;}
.ye5{bottom:831.705000px;}
.y11b{bottom:832.605000px;}
.y1df{bottom:835.485000px;}
.y6d{bottom:837.645000px;}
.yd7{bottom:842.865000px;}
.ye4{bottom:843.765000px;}
.yb{bottom:845.385000px;}
.y1a8{bottom:848.265000px;}
.y50{bottom:848.805000px;}
.y1fc{bottom:850.605000px;}
.y18e{bottom:850.785000px;}
.y11a{bottom:859.245000px;}
.y215{bottom:860.685000px;}
.yb2{bottom:860.865000px;}
.y1de{bottom:866.445000px;}
.y6c{bottom:868.785000px;}
.y1a7{bottom:872.025000px;}
.y4f{bottom:873.105000px;}
.y9b{bottom:874.005000px;}
.ya{bottom:876.345000px;}
.y1fb{bottom:881.565000px;}
.y117{bottom:885.885000px;}
.y214{bottom:891.645000px;}
.y36{bottom:891.996000px;}
.yb1{bottom:892.005000px;}
.y1a6{bottom:896.010000px;}
.y4e{bottom:897.450000px;}
.y6b{bottom:899.790000px;}
.y9a{bottom:905.010000px;}
.y9{bottom:907.530000px;}
.y116{bottom:912.570000px;}
.y1fa{bottom:912.750000px;}
.y1c4{bottom:914.010000px;}
.y1dd{bottom:918.150000px;}
.y4d{bottom:921.750000px;}
.y213{bottom:922.830000px;}
.yb0{bottom:923.010000px;}
.y35{bottom:930.750000px;}
.y6a{bottom:930.930000px;}
.y99{bottom:936.150000px;}
.y1a5{bottom:937.770000px;}
.y8{bottom:938.490000px;}
.y115{bottom:939.210000px;}
.y4c{bottom:945.870000px;}
.y1f9{bottom:946.230000px;}
.y212{bottom:953.790000px;}
.yaf{bottom:954.150000px;}
.y1a4{bottom:961.530000px;}
.y69{bottom:961.890000px;}
.y114{bottom:965.850000px;}
.ye3{bottom:967.110000px;}
.y7{bottom:969.630000px;}
.y1dc{bottom:969.810000px;}
.y4b{bottom:970.170000px;}
.y34{bottom:979.710000px;}
.y1f8{bottom:979.890000px;}
.y14b{bottom:980.610000px;}
.y211{bottom:984.750000px;}
.y98{bottom:985.110000px;}
.y1a3{bottom:985.290000px;}
.y111{bottom:992.490000px;}
.y68{bottom:993.030000px;}
.y4a{bottom:994.470000px;}
.ye2{bottom:998.250000px;}
.y6{bottom:1000.590000px;}
.y1db{bottom:1000.950000px;}
.y1c3{bottom:1003.290000px;}
.y1a2{bottom:1009.230000px;}
.y1f7{bottom:1011.030000px;}
.y14a{bottom:1011.750000px;}
.y210{bottom:1015.890000px;}
.y97{bottom:1016.250000px;}
.y49{bottom:1018.770000px;}
.y10e{bottom:1018.950000px;}
.y67{bottom:1023.990000px;}
.y1c2{bottom:1027.230000px;}
.y5{bottom:1031.730000px;}
.y1da{bottom:1031.910000px;}
.y1f6{bottom:1041.990000px;}
.y149{bottom:1042.710000px;}
.y48{bottom:1043.070000px;}
.y10c{bottom:1045.575000px;}
.y109{bottom:1045.590000px;}
.y20f{bottom:1046.850000px;}
.y96{bottom:1047.210000px;}
.y1a1{bottom:1050.990000px;}
.y66{bottom:1055.130000px;}
.y4{bottom:1062.690000px;}
.y47{bottom:1067.190000px;}
.y1f5{bottom:1073.130000px;}
.y1a0{bottom:1074.750000px;}
.y95{bottom:1078.350000px;}
.y1d9{bottom:1083.390000px;}
.yca{bottom:1085.730000px;}
.y65{bottom:1086.090000px;}
.y3{bottom:1091.130000px;}
.y46{bottom:1091.490000px;}
.y1c1{bottom:1092.750000px;}
.y19f{bottom:1098.510000px;}
.y20e{bottom:1101.570000px;}
.y1f4{bottom:1104.090000px;}
.y13c{bottom:1106.955000px;}
.y94{bottom:1109.310000px;}
.y1c0{bottom:1116.510000px;}
.y2{bottom:1117.050000px;}
.y107{bottom:1124.070000px;}
.y45{bottom:1137.390000px;}
.y1f3{bottom:1137.750000px;}
.yd6{bottom:1140.090000px;}
.y93{bottom:1140.450000px;}
.y140{bottom:1140.630000px;}
.y1{bottom:1142.970000px;}
.h10{height:21.060000px;}
.h22{height:25.725000px;}
.h28{height:25.731000px;}
.h25{height:25.740000px;}
.h27{height:25.761000px;}
.h29{height:25.776000px;}
.h21{height:25.905000px;}
.h24{height:25.920000px;}
.h23{height:25.942500px;}
.h26{height:25.950000px;}
.h1a{height:28.470000px;}
.ha{height:34.740000px;}
.h15{height:35.662500px;}
.h2c{height:35.991211px;}
.h2{height:39.830273px;}
.h1d{height:40.909922px;}
.h1e{height:41.522695px;}
.hf{height:42.840000px;}
.h1b{height:45.345937px;}
.h2b{height:46.025156px;}
.h3{height:50.027344px;}
.h18{height:54.029531px;}
.h14{height:56.385000px;}
.hd{height:58.531992px;}
.he{height:62.648438px;}
.h4{height:63.949219px;}
.h11{height:64.009219px;}
.h13{height:64.546875px;}
.h8{height:65.554453px;}
.h2f{height:66.536367px;}
.h32{height:66.676289px;}
.h2e{height:66.960000px;}
.h30{height:68.143359px;}
.hb{height:73.298672px;}
.h6{height:73.933594px;}
.h12{height:74.820586px;}
.h31{height:75.519844px;}
.h1c{height:77.745000px;}
.h1f{height:77.751000px;}
.h20{height:77.760000px;}
.hc{height:82.440000px;}
.h9{height:83.322422px;}
.h7{height:86.220000px;}
.h2a{height:87.885000px;}
.h2d{height:97.762500px;}
.h17{height:98.267344px;}
.h16{height:115.399687px;}
.h19{height:122.805000px;}
.h5{height:164.895000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:10.080000px;}
.wa{width:19.980000px;}
.w12{width:46.440000px;}
.w18{width:62.121000px;}
.w11{width:62.122500px;}
.wc{width:65.916000px;}
.w16{width:73.605000px;}
.w10{width:80.805000px;}
.w13{width:85.176000px;}
.wf{width:86.796000px;}
.w15{width:87.501000px;}
.w14{width:101.505000px;}
.w17{width:131.070000px;}
.we{width:292.200000px;}
.w3{width:294.690000px;}
.w4{width:348.015000px;}
.w6{width:369.615000px;}
.wd{width:396.786000px;}
.w2{width:415.005000px;}
.w5{width:432.480000px;}
.w8{width:522.630000px;}
.w9{width:528.750000px;}
.w1c{width:639.630000px;}
.w1b{width:655.110000px;}
.w1a{width:656.055000px;}
.w19{width:660.555000px;}
.wb{width:683.955000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:6.120000px;}
.x1f{left:8.100000px;}
.x26{left:9.705000px;}
.x5{left:10.830000px;}
.x29{left:12.060000px;}
.x23{left:13.536000px;}
.xa{left:15.285000px;}
.x27{left:16.950000px;}
.x17{left:19.965000px;}
.xb{left:23.070000px;}
.x7{left:24.645000px;}
.x2f{left:27.000000px;}
.xf{left:30.405000px;}
.x2c{left:32.385000px;}
.x30{left:34.596000px;}
.x35{left:35.805000px;}
.x31{left:39.585000px;}
.x34{left:43.365000px;}
.x33{left:46.965000px;}
.x32{left:48.600000px;}
.xc{left:52.950000px;}
.x19{left:55.425000px;}
.x8{left:61.725000px;}
.x22{left:71.265000px;}
.x1e{left:73.620000px;}
.x1d{left:109.845000px;}
.x36{left:126.045000px;}
.x2{left:127.656000px;}
.x37{left:136.665000px;}
.x20{left:139.725000px;}
.x15{left:145.656000px;}
.x39{left:154.650000px;}
.x24{left:160.425000px;}
.x11{left:168.336000px;}
.x3a{left:174.630000px;}
.x16{left:181.650000px;}
.x18{left:198.570000px;}
.xd{left:216.255000px;}
.x25{left:241.245000px;}
.x12{left:259.290000px;}
.x13{left:273.846000px;}
.x28{left:303.375000px;}
.x14{left:308.406000px;}
.x1b{left:324.435000px;}
.x2a{left:349.815000px;}
.x3{left:353.055000px;}
.x1c{left:366.735000px;}
.x4{left:432.795000px;}
.x2b{left:435.000000px;}
.x1a{left:436.440000px;}
.x10{left:441.300000px;}
.x38{left:446.325000px;}
.xe{left:451.200000px;}
.x9{left:470.280000px;}
.x6{left:488.100000px;}
.x21{left:536.880000px;}
.x2d{left:624.390000px;}
.x2e{left:698.010000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v2{vertical-align:42.880000pt;}
.v1{vertical-align:48.640000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.584320pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.478080pt;}
.lsa{letter-spacing:-0.307008pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.228416pt;}
.ls1b{letter-spacing:-0.212480pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.095616pt;}
.ls2{letter-spacing:-0.047808pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1e{letter-spacing:0.047808pt;}
.ls9{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.142272pt;}
.ls19{letter-spacing:0.159360pt;}
.ls13{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224640pt;}
.ls1d{letter-spacing:0.228416pt;}
.lsb{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.318720pt;}
.ls7{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.321984pt;}
.lse{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls4{letter-spacing:3.680000pt;}
.ls29{letter-spacing:5.760000pt;}
.ls26{letter-spacing:7.680000pt;}
.ls25{letter-spacing:7.983360pt;}
.ls10{letter-spacing:9.600000pt;}
.lsf{letter-spacing:16.000000pt;}
.ls20{letter-spacing:25.088000pt;}
.ls24{letter-spacing:34.842027pt;}
.ls22{letter-spacing:59.183360pt;}
.ls12{letter-spacing:120.512000pt;}
.ls27{letter-spacing:135.018667pt;}
.ws22{word-spacing:-75.022272pt;}
.ws20{word-spacing:-64.000000pt;}
.ws21{word-spacing:-19.041984pt;}
.ws0{word-spacing:-18.944640pt;}
.ws7{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.412992pt;}
.wsd{word-spacing:-16.704000pt;}
.ws11{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws1f{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-15.168000pt;}
.ws5{word-spacing:-14.400000pt;}
.wsf{word-spacing:-13.888000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws15{word-spacing:-13.598720pt;}
.ws16{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.508416pt;}
.ws13{word-spacing:-13.439360pt;}
.ws1b{word-spacing:-13.327808pt;}
.ws19{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.232192pt;}
.ws18{word-spacing:-13.184384pt;}
.ws17{word-spacing:-13.067520pt;}
.ws14{word-spacing:-13.051584pt;}
.ws12{word-spacing:-12.801920pt;}
.ws1c{word-spacing:-12.695680pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:4.800000pt;}
._13{margin-left:-11.658667pt;}
._11{margin-left:-10.581333pt;}
._f{margin-left:-9.365333pt;}
._10{margin-left:-8.245333pt;}
._12{margin-left:-6.997333pt;}
._d{margin-left:-5.973333pt;}
._c{margin-left:-4.053333pt;}
._e{margin-left:-2.773333pt;}
._5{margin-left:-1.344000pt;}
._0{width:1.168640pt;}
._9{width:2.816000pt;}
._1c{width:3.881387pt;}
._19{width:4.992000pt;}
._1e{width:6.110720pt;}
._1d{width:7.488000pt;}
._8{width:9.139200pt;}
._7{width:10.048000pt;}
._18{width:11.072000pt;}
._15{width:12.416000pt;}
._16{width:13.679360pt;}
._25{width:14.784000pt;}
._22{width:17.216000pt;}
._21{width:18.944000pt;}
._26{width:19.968000pt;}
._1a{width:20.992000pt;}
._1b{width:22.592000pt;}
._a{width:24.236800pt;}
._6{width:25.514667pt;}
._29{width:26.455893pt;}
._27{width:27.776000pt;}
._23{width:29.120000pt;}
._24{width:30.031360pt;}
._28{width:31.402667pt;}
._3{width:32.640000pt;}
._2{width:33.888000pt;}
._17{width:34.816000pt;}
._2f{width:36.096000pt;}
._1f{width:37.632000pt;}
._20{width:38.624000pt;}
._2a{width:40.640000pt;}
._2b{width:41.930667pt;}
._2c{width:43.178667pt;}
._4{width:73.632000pt;}
._30{width:156.778667pt;}
._14{width:169.600000pt;}
._2e{width:172.778667pt;}
._b{width:224.482560pt;}
._1{width:963.466667pt;}
._2d{width:1600.405333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs8{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y16d{bottom:-43.066667pt;}
.y16c{bottom:-24.160000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:3.520000pt;}
.y16b{bottom:8.160000pt;}
.y13a{bottom:10.546667pt;}
.y112{bottom:10.560000pt;}
.y12d{bottom:10.586667pt;}
.y130{bottom:10.706667pt;}
.y10f{bottom:10.720000pt;}
.y118{bottom:10.760000pt;}
.y13b{bottom:10.866667pt;}
.y113{bottom:10.880000pt;}
.y12e{bottom:10.906667pt;}
.y131{bottom:11.026667pt;}
.y110{bottom:11.040000pt;}
.y10d{bottom:11.053333pt;}
.y119{bottom:11.080000pt;}
.y108{bottom:11.680000pt;}
.y2b{bottom:13.133333pt;}
.y26{bottom:13.280000pt;}
.y2f{bottom:15.186667pt;}
.y13f{bottom:16.013333pt;}
.yae{bottom:17.120000pt;}
.yd5{bottom:17.146667pt;}
.y106{bottom:19.872000pt;}
.y31{bottom:20.333333pt;}
.y16a{bottom:26.720000pt;}
.y29{bottom:31.840000pt;}
.y10b{bottom:34.080000pt;}
.y2e{bottom:34.706667pt;}
.yad{bottom:35.706667pt;}
.y148{bottom:35.712000pt;}
.y105{bottom:38.426667pt;}
.y25{bottom:41.440000pt;}
.y169{bottom:45.120000pt;}
.y13e{bottom:46.920000pt;}
.y32{bottom:47.040000pt;}
.y44{bottom:50.720000pt;}
.y157{bottom:54.106667pt;}
.y2d{bottom:56.306667pt;}
.y28{bottom:56.800000pt;}
.y10a{bottom:57.120000pt;}
.y104{bottom:57.146667pt;}
.y13d{bottom:64.360000pt;}
.y24{bottom:69.120000pt;}
.y156{bottom:72.506667pt;}
.y103{bottom:75.866667pt;}
.y100{bottom:86.240000pt;}
.y147{bottom:88.960000pt;}
.y102{bottom:94.426667pt;}
.y23{bottom:96.640000pt;}
.y101{bottom:100.960000pt;}
.yac{bottom:101.120000pt;}
.y167{bottom:104.640000pt;}
.y1bf{bottom:105.280000pt;}
.yf9{bottom:107.200000pt;}
.y18d{bottom:107.520000pt;}
.y17d{bottom:110.080000pt;}
.y1d8{bottom:110.240000pt;}
.y64{bottom:112.160000pt;}
.y154{bottom:112.960000pt;}
.yc9{bottom:114.080000pt;}
.y92{bottom:116.960000pt;}
.ye1{bottom:117.280000pt;}
.y20{bottom:123.552000pt;}
.y22{bottom:124.360000pt;}
.y22b{bottom:124.512000pt;}
.y139{bottom:124.840000pt;}
.y81{bottom:128.352000pt;}
.yff{bottom:128.672000pt;}
.y1d7{bottom:131.552000pt;}
.yd3{bottom:134.266667pt;}
.y20d{bottom:134.426667pt;}
.y17c{bottom:137.626667pt;}
.y1f2{bottom:137.946667pt;}
.y153{bottom:140.666667pt;}
.y43{bottom:140.994667pt;}
.yc8{bottom:141.786667pt;}
.y1be{bottom:142.426667pt;}
.y19e{bottom:147.386667pt;}
.y166{bottom:148.186667pt;}
.y138{bottom:148.360000pt;}
.yf8{bottom:150.746667pt;}
.y18c{bottom:152.186667pt;}
.y1d6{bottom:152.666667pt;}
.y2c{bottom:156.200000pt;}
.y63{bottom:160.346667pt;}
.y91{bottom:160.666667pt;}
.ye0{bottom:160.826667pt;}
.yd2{bottom:162.106667pt;}
.y1bd{bottom:163.546667pt;}
.y1f{bottom:167.066667pt;}
.y152{bottom:168.186667pt;}
.yc7{bottom:169.306667pt;}
.y80{bottom:171.866667pt;}
.y137{bottom:172.040000pt;}
.yfe{bottom:172.186667pt;}
.y165{bottom:175.866667pt;}
.y42{bottom:176.514667pt;}
.y18b{bottom:179.866667pt;}
.y22a{bottom:180.826667pt;}
.y17b{bottom:181.306667pt;}
.y1f1{bottom:181.626667pt;}
.y1bc{bottom:184.826667pt;}
.y19d{bottom:186.426667pt;}
.y90{bottom:188.186667pt;}
.y20c{bottom:189.626667pt;}
.yd1{bottom:189.786667pt;}
.y1d5{bottom:190.906667pt;}
.yf7{bottom:194.426667pt;}
.y136{bottom:195.720000pt;}
.y151{bottom:195.866667pt;}
.yc6{bottom:196.986667pt;}
.y164{bottom:203.386667pt;}
.ydf{bottom:204.346667pt;}
.y18a{bottom:207.386667pt;}
.y229{bottom:208.346667pt;}
.y62{bottom:208.506667pt;}
.y17a{bottom:208.826667pt;}
.y1f0{bottom:209.146667pt;}
.y1e{bottom:210.746667pt;}
.y1d4{bottom:213.626667pt;}
.y7f{bottom:215.866667pt;}
.yd0{bottom:217.306667pt;}
.y135{bottom:219.400000pt;}
.y1bb{bottom:221.946667pt;}
.y150{bottom:223.386667pt;}
.yc5{bottom:224.506667pt;}
.y19c{bottom:225.466667pt;}
.y163{bottom:231.066667pt;}
.y1d3{bottom:234.746667pt;}
.y189{bottom:235.066667pt;}
.y228{bottom:236.026667pt;}
.y179{bottom:236.346667pt;}
.y1ef{bottom:236.826667pt;}
.yf6{bottom:237.946667pt;}
.y1ba{bottom:243.066667pt;}
.y134{bottom:243.080000pt;}
.y8f{bottom:243.386667pt;}
.y20b{bottom:244.826667pt;}
.ycf{bottom:244.986667pt;}
.yde{bottom:248.026667pt;}
.y14f{bottom:251.066667pt;}
.yc4{bottom:252.026667pt;}
.y1d{bottom:254.266667pt;}
.y61{bottom:256.666667pt;}
.y162{bottom:258.586667pt;}
.y7e{bottom:259.386667pt;}
.y188{bottom:262.586667pt;}
.y227{bottom:263.546667pt;}
.y178{bottom:264.026667pt;}
.y1ee{bottom:264.346667pt;}
.y19b{bottom:264.666667pt;}
.yf5{bottom:265.626667pt;}
.y133{bottom:266.760000pt;}
.y14e{bottom:269.146667pt;}
.y8e{bottom:271.066667pt;}
.y1d2{bottom:272.026667pt;}
.yce{bottom:272.506667pt;}
.ydd{bottom:275.546667pt;}
.yc3{bottom:279.706667pt;}
.y1b9{bottom:280.186667pt;}
.y1c{bottom:282.266667pt;}
.y161{bottom:286.266667pt;}
.y41{bottom:290.114667pt;}
.y187{bottom:290.266667pt;}
.y132{bottom:290.440000pt;}
.y226{bottom:291.226667pt;}
.y177{bottom:291.546667pt;}
.y1ed{bottom:292.026667pt;}
.yf4{bottom:293.146667pt;}
.y14d{bottom:296.986667pt;}
.y8d{bottom:298.586667pt;}
.y20a{bottom:300.026667pt;}
.ycd{bottom:300.186667pt;}
.y1b8{bottom:301.466667pt;}
.y7d{bottom:303.066667pt;}
.ydc{bottom:303.226667pt;}
.y19a{bottom:303.706667pt;}
.y60{bottom:304.986667pt;}
.y1b{bottom:309.786667pt;}
.y160{bottom:313.786667pt;}
.y12f{bottom:314.120000pt;}
.y1d1{bottom:314.266667pt;}
.y186{bottom:317.786667pt;}
.y225{bottom:318.746667pt;}
.yab{bottom:319.226667pt;}
.y1ec{bottom:319.546667pt;}
.yf3{bottom:320.826667pt;}
.yc2{bottom:323.546667pt;}
.y40{bottom:324.514667pt;}
.y14c{bottom:324.986667pt;}
.y5f{bottom:326.106667pt;}
.y8c{bottom:326.266667pt;}
.ycc{bottom:327.706667pt;}
.yd4{bottom:329.000000pt;}
.y7c{bottom:330.586667pt;}
.ydb{bottom:330.746667pt;}
.y1a{bottom:337.466667pt;}
.y12c{bottom:337.800000pt;}
.y155{bottom:339.560000pt;}
.y15f{bottom:341.466667pt;}
.y199{bottom:342.746667pt;}
.y1b7{bottom:345.026667pt;}
.y185{bottom:345.506667pt;}
.y224{bottom:346.466667pt;}
.yaa{bottom:346.786667pt;}
.y1eb{bottom:347.266667pt;}
.yf2{bottom:348.386667pt;}
.yc1{bottom:351.266667pt;}
.y1d0{bottom:351.426667pt;}
.y8b{bottom:353.826667pt;}
.y209{bottom:355.266667pt;}
.ycb{bottom:355.426667pt;}
.y7b{bottom:358.306667pt;}
.yda{bottom:358.466667pt;}
.y12b{bottom:361.506667pt;}
.y19{bottom:365.026667pt;}
.y15e{bottom:369.026667pt;}
.y5e{bottom:371.906667pt;}
.y1b6{bottom:372.706667pt;}
.y184{bottom:373.026667pt;}
.y223{bottom:373.986667pt;}
.ya9{bottom:374.466667pt;}
.y1ea{bottom:374.786667pt;}
.yf1{bottom:376.066667pt;}
.yc0{bottom:378.786667pt;}
.y8a{bottom:381.506667pt;}
.y198{bottom:381.986667pt;}
.y208{bottom:382.946667pt;}
.y12a{bottom:385.186667pt;}
.y7a{bottom:385.826667pt;}
.y18{bottom:392.706667pt;}
.y1cf{bottom:393.826667pt;}
.y15d{bottom:396.706667pt;}
.yfd{bottom:397.506667pt;}
.y183{bottom:400.706667pt;}
.y222{bottom:401.506667pt;}
.ya8{bottom:401.986667pt;}
.y3f{bottom:402.306667pt;}
.y1e9{bottom:402.466667pt;}
.yf0{bottom:403.586667pt;}
.ybf{bottom:406.466667pt;}
.y129{bottom:408.706667pt;}
.y89{bottom:409.026667pt;}
.y1b5{bottom:409.826667pt;}
.y207{bottom:410.466667pt;}
.y5d{bottom:412.546667pt;}
.y79{bottom:413.506667pt;}
.y1ce{bottom:414.946667pt;}
.y17{bottom:420.226667pt;}
.y197{bottom:421.026667pt;}
.y15c{bottom:424.226667pt;}
.yfc{bottom:425.026667pt;}
.y182{bottom:428.226667pt;}
.ya7{bottom:429.666667pt;}
.y1e8{bottom:429.986667pt;}
.y1b4{bottom:430.946667pt;}
.yef{bottom:431.266667pt;}
.y30{bottom:431.413333pt;}
.y221{bottom:431.426667pt;}
.y128{bottom:432.386667pt;}
.ybe{bottom:433.986667pt;}
.y1cd{bottom:436.066667pt;}
.y88{bottom:436.706667pt;}
.y206{bottom:438.146667pt;}
.y78{bottom:441.026667pt;}
.y176{bottom:445.666667pt;}
.y3e{bottom:445.986667pt;}
.y16{bottom:447.906667pt;}
.y15b{bottom:451.906667pt;}
.y1b3{bottom:452.066667pt;}
.yfb{bottom:452.706667pt;}
.y5c{bottom:453.346667pt;}
.y181{bottom:455.906667pt;}
.y127{bottom:456.066667pt;}
.ya6{bottom:457.186667pt;}
.y1cc{bottom:457.346667pt;}
.y1e7{bottom:459.906667pt;}
.y196{bottom:460.066667pt;}
.y220{bottom:461.346667pt;}
.ybd{bottom:461.666667pt;}
.y87{bottom:464.226667pt;}
.y205{bottom:465.666667pt;}
.y77{bottom:468.706667pt;}
.y175{bottom:473.186667pt;}
.y1b2{bottom:473.346667pt;}
.y2a{bottom:474.293333pt;}
.y5b{bottom:474.466667pt;}
.yee{bottom:474.786667pt;}
.y15{bottom:475.426667pt;}
.y1cb{bottom:478.466667pt;}
.y126{bottom:479.746667pt;}
.yfa{bottom:480.226667pt;}
.y180{bottom:483.426667pt;}
.ya5{bottom:484.866667pt;}
.y21f{bottom:489.026667pt;}
.ybc{bottom:489.186667pt;}
.y3d{bottom:489.506667pt;}
.y5a{bottom:493.186667pt;}
.y1b1{bottom:494.466667pt;}
.y76{bottom:496.226667pt;}
.y15a{bottom:497.346667pt;}
.y195{bottom:499.266667pt;}
.y174{bottom:500.866667pt;}
.yed{bottom:502.466667pt;}
.y14{bottom:503.106667pt;}
.y125{bottom:503.426667pt;}
.y1e6{bottom:505.826667pt;}
.y86{bottom:507.906667pt;}
.y59{bottom:511.906667pt;}
.ya4{bottom:512.386667pt;}
.y204{bottom:514.306667pt;}
.y1b0{bottom:515.586667pt;}
.y21e{bottom:516.546667pt;}
.ybb{bottom:516.866667pt;}
.y3c{bottom:517.186667pt;}
.y75{bottom:523.906667pt;}
.y124{bottom:527.106667pt;}
.y173{bottom:528.386667pt;}
.y17f{bottom:528.866667pt;}
.yec{bottom:529.986667pt;}
.y13{bottom:530.626667pt;}
.y1e5{bottom:533.506667pt;}
.y85{bottom:535.426667pt;}
.y1ca{bottom:536.706667pt;}
.y194{bottom:538.306667pt;}
.ya3{bottom:540.066667pt;}
.y146{bottom:540.546667pt;}
.y21d{bottom:544.226667pt;}
.yba{bottom:544.386667pt;}
.y3b{bottom:544.693333pt;}
.y159{bottom:545.506667pt;}
.y58{bottom:549.506667pt;}
.y123{bottom:550.786667pt;}
.y74{bottom:551.426667pt;}
.y1af{bottom:552.706667pt;}
.y172{bottom:556.066667pt;}
.yeb{bottom:557.506667pt;}
.y1c9{bottom:557.986667pt;}
.y12{bottom:558.306667pt;}
.y1e4{bottom:561.026667pt;}
.y203{bottom:562.786667pt;}
.y84{bottom:563.106667pt;}
.y17e{bottom:565.986667pt;}
.ya2{bottom:567.586667pt;}
.y145{bottom:568.066667pt;}
.y57{bottom:568.226667pt;}
.y21c{bottom:571.773333pt;}
.yb9{bottom:572.093333pt;}
.y3a{bottom:572.405333pt;}
.y27{bottom:573.693333pt;}
.y1ae{bottom:574.013333pt;}
.y122{bottom:574.493333pt;}
.y193{bottom:577.533333pt;}
.y73{bottom:579.133333pt;}
.y171{bottom:583.613333pt;}
.yea{bottom:585.213333pt;}
.y11{bottom:585.853333pt;}
.y56{bottom:586.973333pt;}
.y1e3{bottom:588.733333pt;}
.y202{bottom:590.493333pt;}
.y83{bottom:590.653333pt;}
.y158{bottom:591.933333pt;}
.y1ad{bottom:595.133333pt;}
.ya1{bottom:595.293333pt;}
.y144{bottom:595.773333pt;}
.y121{bottom:598.173333pt;}
.y21b{bottom:599.453333pt;}
.yb8{bottom:599.613333pt;}
.y39{bottom:599.925333pt;}
.y168{bottom:606.493333pt;}
.y72{bottom:606.653333pt;}
.y170{bottom:611.293333pt;}
.ye9{bottom:612.733333pt;}
.y10{bottom:613.533333pt;}
.y143{bottom:614.333333pt;}
.y192{bottom:616.093333pt;}
.y1c8{bottom:616.253333pt;}
.y201{bottom:618.013333pt;}
.y82{bottom:618.333333pt;}
.y120{bottom:621.853333pt;}
.ya0{bottom:622.813333pt;}
.y55{bottom:625.213333pt;}
.y21a{bottom:626.973333pt;}
.yb7{bottom:627.293333pt;}
.y1ac{bottom:632.253333pt;}
.y71{bottom:634.333333pt;}
.y1c7{bottom:637.373333pt;}
.y16f{bottom:638.813333pt;}
.ye8{bottom:640.413333pt;}
.yf{bottom:641.053333pt;}
.y11f{bottom:645.373333pt;}
.y200{bottom:645.693333pt;}
.y142{bottom:645.853333pt;}
.y9f{bottom:650.493333pt;}
.y191{bottom:652.733333pt;}
.y1ab{bottom:653.373333pt;}
.y219{bottom:654.653333pt;}
.yb6{bottom:654.813333pt;}
.y1e2{bottom:659.773333pt;}
.y141{bottom:660.573333pt;}
.y70{bottom:661.853333pt;}
.y54{bottom:666.013333pt;}
.y16e{bottom:666.493333pt;}
.ye7{bottom:667.933333pt;}
.ye{bottom:668.733333pt;}
.y11e{bottom:669.053333pt;}
.y1ff{bottom:673.213333pt;}
.y1c6{bottom:674.493333pt;}
.y9e{bottom:678.013333pt;}
.y218{bottom:682.173333pt;}
.yb5{bottom:682.493333pt;}
.y21{bottom:683.453333pt;}
.y38{bottom:687.125333pt;}
.y1e1{bottom:687.453333pt;}
.y6f{bottom:689.373333pt;}
.y53{bottom:690.173333pt;}
.y1aa{bottom:690.493333pt;}
.y11d{bottom:692.733333pt;}
.yd9{bottom:694.013333pt;}
.y1c5{bottom:695.773333pt;}
.yd{bottom:696.253333pt;}
.y1fe{bottom:700.893333pt;}
.y190{bottom:701.053333pt;}
.y9d{bottom:705.693333pt;}
.y217{bottom:709.853333pt;}
.yb4{bottom:710.013333pt;}
.y52{bottom:711.293333pt;}
.ye6{bottom:711.613333pt;}
.y1a9{bottom:711.773333pt;}
.y37{bottom:714.805333pt;}
.y1e0{bottom:714.973333pt;}
.y11c{bottom:716.413333pt;}
.y6e{bottom:717.053333pt;}
.yd8{bottom:721.693333pt;}
.yc{bottom:723.773333pt;}
.y1fd{bottom:728.413333pt;}
.y18f{bottom:728.573333pt;}
.y51{bottom:732.893333pt;}
.y9c{bottom:733.213333pt;}
.y216{bottom:737.373333pt;}
.yb3{bottom:737.693333pt;}
.ye5{bottom:739.293333pt;}
.y11b{bottom:740.093333pt;}
.y1df{bottom:742.653333pt;}
.y6d{bottom:744.573333pt;}
.yd7{bottom:749.213333pt;}
.ye4{bottom:750.013333pt;}
.yb{bottom:751.453333pt;}
.y1a8{bottom:754.013333pt;}
.y50{bottom:754.493333pt;}
.y1fc{bottom:756.093333pt;}
.y18e{bottom:756.253333pt;}
.y11a{bottom:763.773333pt;}
.y215{bottom:765.053333pt;}
.yb2{bottom:765.213333pt;}
.y1de{bottom:770.173333pt;}
.y6c{bottom:772.253333pt;}
.y1a7{bottom:775.133333pt;}
.y4f{bottom:776.093333pt;}
.y9b{bottom:776.893333pt;}
.ya{bottom:778.973333pt;}
.y1fb{bottom:783.613333pt;}
.y117{bottom:787.453333pt;}
.y214{bottom:792.573333pt;}
.y36{bottom:792.885333pt;}
.yb1{bottom:792.893333pt;}
.y1a6{bottom:796.453333pt;}
.y4e{bottom:797.733333pt;}
.y6b{bottom:799.813333pt;}
.y9a{bottom:804.453333pt;}
.y9{bottom:806.693333pt;}
.y116{bottom:811.173333pt;}
.y1fa{bottom:811.333333pt;}
.y1c4{bottom:812.453333pt;}
.y1dd{bottom:816.133333pt;}
.y4d{bottom:819.333333pt;}
.y213{bottom:820.293333pt;}
.yb0{bottom:820.453333pt;}
.y35{bottom:827.333333pt;}
.y6a{bottom:827.493333pt;}
.y99{bottom:832.133333pt;}
.y1a5{bottom:833.573333pt;}
.y8{bottom:834.213333pt;}
.y115{bottom:834.853333pt;}
.y4c{bottom:840.773333pt;}
.y1f9{bottom:841.093333pt;}
.y212{bottom:847.813333pt;}
.yaf{bottom:848.133333pt;}
.y1a4{bottom:854.693333pt;}
.y69{bottom:855.013333pt;}
.y114{bottom:858.533333pt;}
.ye3{bottom:859.653333pt;}
.y7{bottom:861.893333pt;}
.y1dc{bottom:862.053333pt;}
.y4b{bottom:862.373333pt;}
.y34{bottom:870.853333pt;}
.y1f8{bottom:871.013333pt;}
.y14b{bottom:871.653333pt;}
.y211{bottom:875.333333pt;}
.y98{bottom:875.653333pt;}
.y1a3{bottom:875.813333pt;}
.y111{bottom:882.213333pt;}
.y68{bottom:882.693333pt;}
.y4a{bottom:883.973333pt;}
.ye2{bottom:887.333333pt;}
.y6{bottom:889.413333pt;}
.y1db{bottom:889.733333pt;}
.y1c3{bottom:891.813333pt;}
.y1a2{bottom:897.093333pt;}
.y1f7{bottom:898.693333pt;}
.y14a{bottom:899.333333pt;}
.y210{bottom:903.013333pt;}
.y97{bottom:903.333333pt;}
.y49{bottom:905.573333pt;}
.y10e{bottom:905.733333pt;}
.y67{bottom:910.213333pt;}
.y1c2{bottom:913.093333pt;}
.y5{bottom:917.093333pt;}
.y1da{bottom:917.253333pt;}
.y1f6{bottom:926.213333pt;}
.y149{bottom:926.853333pt;}
.y48{bottom:927.173333pt;}
.y10c{bottom:929.400000pt;}
.y109{bottom:929.413333pt;}
.y20f{bottom:930.533333pt;}
.y96{bottom:930.853333pt;}
.y1a1{bottom:934.213333pt;}
.y66{bottom:937.893333pt;}
.y4{bottom:944.613333pt;}
.y47{bottom:948.613333pt;}
.y1f5{bottom:953.893333pt;}
.y1a0{bottom:955.333333pt;}
.y95{bottom:958.533333pt;}
.y1d9{bottom:963.013333pt;}
.yca{bottom:965.093333pt;}
.y65{bottom:965.413333pt;}
.y3{bottom:969.893333pt;}
.y46{bottom:970.213333pt;}
.y1c1{bottom:971.333333pt;}
.y19f{bottom:976.453333pt;}
.y20e{bottom:979.173333pt;}
.y1f4{bottom:981.413333pt;}
.y13c{bottom:983.960000pt;}
.y94{bottom:986.053333pt;}
.y1c0{bottom:992.453333pt;}
.y2{bottom:992.933333pt;}
.y107{bottom:999.173333pt;}
.y45{bottom:1011.013333pt;}
.y1f3{bottom:1011.333333pt;}
.yd6{bottom:1013.413333pt;}
.y93{bottom:1013.733333pt;}
.y140{bottom:1013.893333pt;}
.y1{bottom:1015.973333pt;}
.h10{height:18.720000pt;}
.h22{height:22.866667pt;}
.h28{height:22.872000pt;}
.h25{height:22.880000pt;}
.h27{height:22.898667pt;}
.h29{height:22.912000pt;}
.h21{height:23.026667pt;}
.h24{height:23.040000pt;}
.h23{height:23.060000pt;}
.h26{height:23.066667pt;}
.h1a{height:25.306667pt;}
.ha{height:30.880000pt;}
.h15{height:31.700000pt;}
.h2c{height:31.992188pt;}
.h2{height:35.404688pt;}
.h1d{height:36.364375pt;}
.h1e{height:36.909063pt;}
.hf{height:38.080000pt;}
.h1b{height:40.307500pt;}
.h2b{height:40.911250pt;}
.h3{height:44.468750pt;}
.h18{height:48.026250pt;}
.h14{height:50.120000pt;}
.hd{height:52.028437pt;}
.he{height:55.687500pt;}
.h4{height:56.843750pt;}
.h11{height:56.897083pt;}
.h13{height:57.375000pt;}
.h8{height:58.270625pt;}
.h2f{height:59.143438pt;}
.h32{height:59.267812pt;}
.h2e{height:59.520000pt;}
.h30{height:60.571875pt;}
.hb{height:65.154375pt;}
.h6{height:65.718750pt;}
.h12{height:66.507188pt;}
.h31{height:67.128750pt;}
.h1c{height:69.106667pt;}
.h1f{height:69.112000pt;}
.h20{height:69.120000pt;}
.hc{height:73.280000pt;}
.h9{height:74.064375pt;}
.h7{height:76.640000pt;}
.h2a{height:78.120000pt;}
.h2d{height:86.900000pt;}
.h17{height:87.348750pt;}
.h16{height:102.577500pt;}
.h19{height:109.160000pt;}
.h5{height:146.573333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:8.960000pt;}
.wa{width:17.760000pt;}
.w12{width:41.280000pt;}
.w18{width:55.218667pt;}
.w11{width:55.220000pt;}
.wc{width:58.592000pt;}
.w16{width:65.426667pt;}
.w10{width:71.826667pt;}
.w13{width:75.712000pt;}
.wf{width:77.152000pt;}
.w15{width:77.778667pt;}
.w14{width:90.226667pt;}
.w17{width:116.506667pt;}
.we{width:259.733333pt;}
.w3{width:261.946667pt;}
.w4{width:309.346667pt;}
.w6{width:328.546667pt;}
.wd{width:352.698667pt;}
.w2{width:368.893333pt;}
.w5{width:384.426667pt;}
.w8{width:464.560000pt;}
.w9{width:470.000000pt;}
.w1c{width:568.560000pt;}
.w1b{width:582.320000pt;}
.w1a{width:583.160000pt;}
.w19{width:587.160000pt;}
.wb{width:607.960000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:5.440000pt;}
.x1f{left:7.200000pt;}
.x26{left:8.626667pt;}
.x5{left:9.626667pt;}
.x29{left:10.720000pt;}
.x23{left:12.032000pt;}
.xa{left:13.586667pt;}
.x27{left:15.066667pt;}
.x17{left:17.746667pt;}
.xb{left:20.506667pt;}
.x7{left:21.906667pt;}
.x2f{left:24.000000pt;}
.xf{left:27.026667pt;}
.x2c{left:28.786667pt;}
.x30{left:30.752000pt;}
.x35{left:31.826667pt;}
.x31{left:35.186667pt;}
.x34{left:38.546667pt;}
.x33{left:41.746667pt;}
.x32{left:43.200000pt;}
.xc{left:47.066667pt;}
.x19{left:49.266667pt;}
.x8{left:54.866667pt;}
.x22{left:63.346667pt;}
.x1e{left:65.440000pt;}
.x1d{left:97.640000pt;}
.x36{left:112.040000pt;}
.x2{left:113.472000pt;}
.x37{left:121.480000pt;}
.x20{left:124.200000pt;}
.x15{left:129.472000pt;}
.x39{left:137.466667pt;}
.x24{left:142.600000pt;}
.x11{left:149.632000pt;}
.x3a{left:155.226667pt;}
.x16{left:161.466667pt;}
.x18{left:176.506667pt;}
.xd{left:192.226667pt;}
.x25{left:214.440000pt;}
.x12{left:230.480000pt;}
.x13{left:243.418667pt;}
.x28{left:269.666667pt;}
.x14{left:274.138667pt;}
.x1b{left:288.386667pt;}
.x2a{left:310.946667pt;}
.x3{left:313.826667pt;}
.x1c{left:325.986667pt;}
.x4{left:384.706667pt;}
.x2b{left:386.666667pt;}
.x1a{left:387.946667pt;}
.x10{left:392.266667pt;}
.x38{left:396.733333pt;}
.xe{left:401.066667pt;}
.x9{left:418.026667pt;}
.x6{left:433.866667pt;}
.x21{left:477.226667pt;}
.x2d{left:555.013333pt;}
.x2e{left:620.453333pt;}
}




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