
    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_54fc9c6264824776ba805134.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e6fcc8c08910221599db4476.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1ca38bfe6268f3718ba5e9a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a6fa945c7a2365b7aef22bfa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2f2b3ea9bba4d6b31fcd50df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cac999436799264ef7858bfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8ce1167cd7a3d0bb60d0b73c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8a71fe03b680fb073f953f11.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_edd1eb5f34ed702dac2f984a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_20a92e837ccaa794492b363c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58399eb2dee26269806b7b7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_51b58e2229684a90b15d4214.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.063477;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_a4f3cf4c1ca2686ca24812b3.woff2')format("woff");}.fff{font-family:fff;line-height:0.946777;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_d9f14604e2bccdd5798b48d1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c10c95c9ea61f8109be330a6.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m2{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v7{vertical-align:-80.280000px;}
.v4{vertical-align:-43.200000px;}
.v5{vertical-align:-42.120000px;}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-15.480000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:21.960000px;}
.ls21{letter-spacing:-9.120000px;}
.ls10{letter-spacing:-5.616000px;}
.ls12{letter-spacing:-4.680000px;}
.ls20{letter-spacing:-1.152000px;}
.ls5{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.166800px;}
.ls4{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.137400px;}
.ls24{letter-spacing:-0.136200px;}
.ls29{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.105600px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.222480px;}
.lsa{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.lsd{letter-spacing:1.530000px;}
.ls26{letter-spacing:1.624191px;}
.ls17{letter-spacing:1.663560px;}
.ls18{letter-spacing:2.612520px;}
.lse{letter-spacing:2.880000px;}
.lsb{letter-spacing:6.132960px;}
.ls1f{letter-spacing:6.840000px;}
.ls13{letter-spacing:8.280000px;}
.ls15{letter-spacing:24.307200px;}
.ls8{letter-spacing:32.400000px;}
.lsc{letter-spacing:72.732960px;}
.ls3{letter-spacing:138.384000px;}
.ls6{letter-spacing:196.560000px;}
.ls19{letter-spacing:197.850000px;}
.ls1{letter-spacing:1034.760000px;}
.ls28{letter-spacing:1318.200000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.640000px;}
.wsa{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.210000px;}
.ws17{word-spacing:-15.183600px;}
.ws13{word-spacing:-15.083280px;}
.wse{word-spacing:-15.030000px;}
.ws14{word-spacing:-14.863200px;}
.ws10{word-spacing:-14.850000px;}
.ws9{word-spacing:-14.356200px;}
.ws1e{word-spacing:-13.626000px;}
.ws1f{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.392000px;}
.ws20{word-spacing:-13.356000px;}
.ws8{word-spacing:-13.320000px;}
.wsf{word-spacing:-13.226400px;}
.ws19{word-spacing:-13.120800px;}
.ws18{word-spacing:-13.090200px;}
.ws11{word-spacing:-13.039800px;}
.ws6{word-spacing:-11.246400px;}
.ws15{word-spacing:-8.880000px;}
.wsc{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.216000px;}
.wsd{word-spacing:1.872000px;}
.ws1a{word-spacing:5.758033px;}
.ws1d{word-spacing:8.949498px;}
.ws1c{word-spacing:30.000301px;}
.ws1b{word-spacing:32.719599px;}
._11{margin-left:-147.144000px;}
._1d{margin-left:-9.864000px;}
._10{margin-left:-7.608000px;}
._2{margin-left:-5.688000px;}
._1{margin-left:-3.816000px;}
._7{margin-left:-2.328000px;}
._0{margin-left:-1.320000px;}
._8{width:1.032000px;}
._c{width:2.160000px;}
._6{width:3.288000px;}
._5{width:5.184000px;}
._b{width:6.240000px;}
._3{width:7.368000px;}
._4{width:8.520000px;}
._12{width:9.528000px;}
._13{width:10.800000px;}
._a{width:11.880000px;}
._9{width:12.888000px;}
._e{width:14.328000px;}
._15{width:15.480000px;}
._f{width:16.824000px;}
._1a{width:19.152000px;}
._16{width:20.232000px;}
._18{width:22.248000px;}
._d{width:23.256000px;}
._14{width:25.056000px;}
._17{width:26.496000px;}
._19{width:27.696000px;}
._1c{width:43.056000px;}
._25{width:47.501684px;}
._1b{width:48.600000px;}
._27{width:50.498010px;}
._26{width:51.782451px;}
._24{width:57.120526px;}
._23{width:60.538422px;}
._22{width:84.494517px;}
._1f{width:92.016000px;}
._1e{width:93.096000px;}
._20{width:109.769988px;}
._21{width:187.229896px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.120000px;}
.fs7{font-size:47.880000px;}
.fs6{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:54.139691px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y1c2{bottom:-8.910000px;}
.y1c0{bottom:-5.850000px;}
.y0{bottom:0.000000px;}
.y1c5{bottom:2.880000px;}
.y1be{bottom:2.970000px;}
.ye5{bottom:3.240000px;}
.ye7{bottom:3.330000px;}
.yeb{bottom:3.420000px;}
.y16b{bottom:4.230000px;}
.y172{bottom:4.320000px;}
.yf3{bottom:8.190000px;}
.yef{bottom:8.280000px;}
.yf0{bottom:8.460000px;}
.ye2{bottom:8.550000px;}
.y174{bottom:9.630000px;}
.y1bb{bottom:18.059815px;}
.y153{bottom:20.250000px;}
.ye9{bottom:20.430000px;}
.ye4{bottom:20.520000px;}
.yc9{bottom:21.870000px;}
.y1d7{bottom:34.500000px;}
.y1ba{bottom:34.949884px;}
.y1b9{bottom:51.797737px;}
.y6{bottom:66.525004px;}
.y1b8{bottom:68.689566px;}
.y24{bottom:85.050000px;}
.y1b7{bottom:85.579635px;}
.y5{bottom:97.125005px;}
.y1b6{bottom:102.427488px;}
.y106{bottom:111.240000px;}
.ya4{bottom:113.040000px;}
.y105{bottom:116.460000px;}
.y1b5{bottom:119.319316px;}
.y50{bottom:121.950000px;}
.y18c{bottom:122.130000px;}
.y15b{bottom:122.400000px;}
.yba{bottom:123.750000px;}
.y119{bottom:126.450000px;}
.y104{bottom:128.520000px;}
.y7c{bottom:129.150000px;}
.y195{bottom:131.760000px;}
.y134{bottom:133.650000px;}
.ya3{bottom:133.740000px;}
.y1b4{bottom:136.209386px;}
.y22{bottom:139.264499px;}
.y4f{bottom:142.650000px;}
.y18b{bottom:142.830000px;}
.yd0{bottom:144.360000px;}
.yb9{bottom:144.450000px;}
.y15a{bottom:144.900000px;}
.y103{bottom:146.970000px;}
.y118{bottom:147.150000px;}
.y7b{bottom:149.850000px;}
.y194{bottom:152.460000px;}
.y1b3{bottom:153.057239px;}
.y90{bottom:153.180000px;}
.y133{bottom:154.350000px;}
.ya2{bottom:154.440000px;}
.y4e{bottom:163.350000px;}
.y18a{bottom:163.530000px;}
.yb8{bottom:165.150000px;}
.y159{bottom:167.400000px;}
.y117{bottom:167.850000px;}
.y1b2{bottom:169.949067px;}
.y7a{bottom:170.550000px;}
.y193{bottom:173.160000px;}
.y8f{bottom:173.880000px;}
.y132{bottom:175.050000px;}
.ya1{bottom:175.140000px;}
.ycf{bottom:183.060000px;}
.y4d{bottom:184.050000px;}
.y189{bottom:184.230000px;}
.yb7{bottom:185.850000px;}
.y1b1{bottom:186.789884px;}
.y116{bottom:188.550000px;}
.y158{bottom:189.900000px;}
.y79{bottom:191.250000px;}
.y192{bottom:193.860000px;}
.y8e{bottom:194.580000px;}
.y102{bottom:195.480000px;}
.ya0{bottom:195.840000px;}
.y19{bottom:196.933500px;}
.yce{bottom:202.140000px;}
.y1b0{bottom:203.694025px;}
.y4c{bottom:204.750000px;}
.y188{bottom:204.930000px;}
.yb6{bottom:206.550000px;}
.y115{bottom:209.250000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y78{bottom:211.950000px;}
.y157{bottom:212.400000px;}
.y191{bottom:214.560000px;}
.y8c{bottom:215.370000px;}
.y101{bottom:216.180000px;}
.y9f{bottom:216.540000px;}
.y1af{bottom:220.580577px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y8d{bottom:222.210000px;}
.y4b{bottom:225.480000px;}
.y187{bottom:225.660000px;}
.yb5{bottom:227.280000px;}
.y114{bottom:229.980000px;}
.y77{bottom:232.680000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y156{bottom:234.930000px;}
.y190{bottom:235.290000px;}
.y8b{bottom:236.370000px;}
.y9e{bottom:237.270000px;}
.y1ae{bottom:237.431948px;}
.ycd{bottom:240.870000px;}
.y4a{bottom:246.180000px;}
.y186{bottom:246.360000px;}
.yb4{bottom:247.980000px;}
.y113{bottom:250.680000px;}
.y76{bottom:253.380000px;}
.y1ad{bottom:254.318499px;}
.y131{bottom:255.180000px;}
.y18f{bottom:255.990000px;}
.y100{bottom:256.980000px;}
.y155{bottom:257.430000px;}
.y9d{bottom:257.970000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y49{bottom:266.880000px;}
.y185{bottom:267.060000px;}
.yb3{bottom:268.680000px;}
.y1ac{bottom:271.205050px;}
.y112{bottom:271.380000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y75{bottom:274.080000px;}
.yff{bottom:274.170000px;}
.y89{bottom:275.250000px;}
.y130{bottom:275.880000px;}
.y18e{bottom:276.690000px;}
.y9c{bottom:278.670000px;}
.ycc{bottom:279.570000px;}
.y154{bottom:279.930000px;}
.y8a{bottom:282.090000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y184{bottom:287.760000px;}
.y1ab{bottom:288.056422px;}
.yb2{bottom:289.380000px;}
.yfe{bottom:291.450000px;}
.y111{bottom:292.080000px;}
.y74{bottom:294.780000px;}
.y18d{bottom:297.390000px;}
.y9b{bottom:299.370000px;}
.y1aa{bottom:304.942973px;}
.y48{bottom:305.580000px;}
.y183{bottom:308.460000px;}
.yfd{bottom:308.730000px;}
.yb1{bottom:310.080000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y110{bottom:312.780000px;}
.y88{bottom:314.220000px;}
.y152{bottom:314.400000px;}
.y196{bottom:315.345000px;}
.y73{bottom:315.480000px;}
.ycb{bottom:318.270000px;}
.y9a{bottom:320.070000px;}
.y1a9{bottom:321.794344px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yfc{bottom:325.920000px;}
.y182{bottom:329.160000px;}
.yb0{bottom:330.780000px;}
.y10f{bottom:333.480000px;}
.y87{bottom:334.920000px;}
.y12f{bottom:335.280000px;}
.y72{bottom:336.180000px;}
.y1a8{bottom:338.680895px;}
.y99{bottom:340.770000px;}
.yfb{bottom:343.200000px;}
.y47{bottom:344.280000px;}
.y10{bottom:348.133500px;}
.y151{bottom:348.870000px;}
.y181{bottom:349.860000px;}
.yaf{bottom:351.480000px;}
.y10e{bottom:354.180000px;}
.y1a7{bottom:355.585037px;}
.y86{bottom:355.620000px;}
.y12e{bottom:355.980000px;}
.y71{bottom:356.880000px;}
.yca{bottom:356.970000px;}
.yfa{bottom:360.480000px;}
.y98{bottom:361.470000px;}
.y180{bottom:370.560000px;}
.yae{bottom:372.180000px;}
.y1a6{bottom:372.418818px;}
.y10d{bottom:374.880000px;}
.yf9{bottom:375.240000px;}
.y150{bottom:376.050000px;}
.y85{bottom:376.320000px;}
.y12d{bottom:376.680000px;}
.y70{bottom:377.580000px;}
.y1e1{bottom:380.190000px;}
.y97{bottom:382.170000px;}
.y46{bottom:382.980000px;}
.yf{bottom:386.785499px;}
.y1a5{bottom:389.322959px;}
.y17f{bottom:391.260000px;}
.yad{bottom:392.880000px;}
.y10c{bottom:395.580000px;}
.yc8{bottom:396.390000px;}
.y14f{bottom:396.750000px;}
.y84{bottom:397.020000px;}
.yf8{bottom:397.740000px;}
.y6f{bottom:398.280000px;}
.y96{bottom:402.870000px;}
.y1a4{bottom:406.209510px;}
.y12c{bottom:406.380000px;}
.ye{bottom:408.044999px;}
.y1e0{bottom:409.890000px;}
.y17e{bottom:411.960000px;}
.yac{bottom:413.580000px;}
.y10b{bottom:416.280000px;}
.y14e{bottom:417.450000px;}
.y83{bottom:417.720000px;}
.y6e{bottom:418.980000px;}
.yf7{bottom:420.240000px;}
.y45{bottom:421.680000px;}
.y1a3{bottom:423.060881px;}
.y95{bottom:423.570000px;}
.y12b{bottom:427.080000px;}
.y17d{bottom:432.660000px;}
.yab{bottom:434.280000px;}
.y10a{bottom:436.980000px;}
.y14d{bottom:438.150000px;}
.y82{bottom:438.420000px;}
.y1df{bottom:439.590000px;}
.y6d{bottom:439.680000px;}
.y1a2{bottom:439.947433px;}
.yc7{bottom:442.380000px;}
.yf6{bottom:442.740000px;}
.y94{bottom:444.270000px;}
.y17c{bottom:453.360000px;}
.yaa{bottom:454.980000px;}
.y14c{bottom:455.700000px;}
.y12a{bottom:456.780000px;}
.y1a1{bottom:456.798804px;}
.y109{bottom:457.680000px;}
.y81{bottom:459.120000px;}
.y44{bottom:460.380000px;}
.y93{bottom:464.970000px;}
.yf5{bottom:465.240000px;}
.y1de{bottom:469.290000px;}
.y1a0{bottom:473.685355px;}
.y17b{bottom:474.060000px;}
.ya9{bottom:475.680000px;}
.y129{bottom:477.480000px;}
.y14b{bottom:478.200000px;}
.y108{bottom:478.380000px;}
.y80{bottom:479.820000px;}
.y43{bottom:481.080000px;}
.y92{bottom:485.670000px;}
.yf4{bottom:487.740000px;}
.y19f{bottom:490.571906px;}
.y17a{bottom:494.760000px;}
.ya8{bottom:496.380000px;}
.y1dd{bottom:498.990000px;}
.y7f{bottom:500.520000px;}
.y14a{bottom:500.700000px;}
.y42{bottom:501.780000px;}
.yd{bottom:502.864502px;}
.y128{bottom:507.180000px;}
.y19e{bottom:507.423277px;}
.y107{bottom:508.080000px;}
.yf2{bottom:510.240000px;}
.y179{bottom:515.460000px;}
.ya7{bottom:517.080000px;}
.y1dc{bottom:519.690000px;}
.y6c{bottom:519.780000px;}
.y91{bottom:520.500000px;}
.yc{bottom:520.864502px;}
.y7e{bottom:521.220000px;}
.y41{bottom:522.480000px;}
.y149{bottom:523.200000px;}
.y19d{bottom:524.309829px;}
.y127{bottom:527.880000px;}
.yf1{bottom:532.740000px;}
.y178{bottom:536.160000px;}
.ya6{bottom:537.780000px;}
.yb{bottom:538.864499px;}
.y1db{bottom:540.390000px;}
.y19c{bottom:541.213970px;}
.y40{bottom:543.180000px;}
.y148{bottom:545.700000px;}
.y126{bottom:548.580000px;}
.yee{bottom:555.240000px;}
.y7d{bottom:556.050000px;}
.y177{bottom:556.230000px;}
.ya{bottom:556.864499px;}
.y19b{bottom:558.047751px;}
.y6b{bottom:558.480000px;}
.y1da{bottom:561.090000px;}
.y3f{bottom:563.880000px;}
.y147{bottom:568.200000px;}
.y176{bottom:573.510000px;}
.y19a{bottom:574.951893px;}
.yed{bottom:577.740000px;}
.y125{bottom:578.190000px;}
.y1d9{bottom:578.730000px;}
.y6a{bottom:579.180000px;}
.y3e{bottom:584.580000px;}
.y146{bottom:590.700000px;}
.y199{bottom:591.785673px;}
.y124{bottom:598.890000px;}
.y69{bottom:599.880000px;}
.y1d8{bottom:601.230000px;}
.y3d{bottom:605.190000px;}
.y175{bottom:607.980000px;}
.y198{bottom:608.689815px;}
.yec{bottom:612.210000px;}
.y145{bottom:613.200000px;}
.y123{bottom:619.590000px;}
.y68{bottom:620.580000px;}
.y173{bottom:621.930000px;}
.y1d6{bottom:623.730000px;}
.y3c{bottom:625.890000px;}
.y144{bottom:635.700000px;}
.y67{bottom:641.190000px;}
.y197{bottom:642.427737px;}
.y9{bottom:645.510000px;}
.y171{bottom:645.630000px;}
.y3b{bottom:646.620000px;}
.yea{bottom:646.710000px;}
.y122{bottom:649.320000px;}
.y143{bottom:658.230000px;}
.y66{bottom:661.920000px;}
.y170{bottom:663.900000px;}
.y8{bottom:666.771000px;}
.y3a{bottom:667.320000px;}
.y121{bottom:670.020000px;}
.y142{bottom:680.730000px;}
.y16f{bottom:681.180000px;}
.ye8{bottom:681.270000px;}
.y65{bottom:682.620000px;}
.y39{bottom:688.020000px;}
.y16e{bottom:698.460000px;}
.y120{bottom:699.720000px;}
.y141{bottom:703.230000px;}
.y64{bottom:703.320000px;}
.y1d5{bottom:707.820000px;}
.y38{bottom:708.720000px;}
.y16c{bottom:715.650000px;}
.ye6{bottom:715.740000px;}
.y11f{bottom:720.420000px;}
.y63{bottom:724.020000px;}
.y140{bottom:725.730000px;}
.y7{bottom:726.298500px;}
.y1d4{bottom:728.520000px;}
.y37{bottom:729.420000px;}
.y16d{bottom:732.930000px;}
.y11e{bottom:741.120000px;}
.y62{bottom:744.720000px;}
.y1d3{bottom:749.220000px;}
.ybb{bottom:750.120000px;}
.ye3{bottom:750.210000px;}
.y4{bottom:752.599495px;}
.y13f{bottom:752.820000px;}
.ya5{bottom:765.420000px;}
.y16a{bottom:767.400000px;}
.y36{bottom:768.120000px;}
.yc6{bottom:770.820000px;}
.y13e{bottom:773.520000px;}
.y169{bottom:774.870000px;}
.ye1{bottom:784.680000px;}
.y61{bottom:786.120000px;}
.y35{bottom:788.820000px;}
.y1d2{bottom:790.620000px;}
.yc5{bottom:791.520000px;}
.y168{bottom:792.780000px;}
.y13d{bottom:794.220000px;}
.y60{bottom:806.820000px;}
.y34{bottom:809.520000px;}
.y1d1{bottom:810.420000px;}
.ye0{bottom:811.860000px;}
.yc4{bottom:812.220000px;}
.y167{bottom:813.480000px;}
.y13c{bottom:814.920000px;}
.y1d0{bottom:825.900000px;}
.y5f{bottom:827.520000px;}
.y33{bottom:830.220000px;}
.ydf{bottom:832.560000px;}
.yc3{bottom:832.920000px;}
.y166{bottom:834.090000px;}
.y1cf{bottom:841.470000px;}
.y13b{bottom:844.620000px;}
.y5e{bottom:848.220000px;}
.y32{bottom:850.920000px;}
.yde{bottom:853.260000px;}
.yc2{bottom:853.620000px;}
.y1ce{bottom:854.070000px;}
.y165{bottom:854.790000px;}
.y11d{bottom:862.620000px;}
.y1cd{bottom:864.150000px;}
.y5d{bottom:868.920000px;}
.y1cc{bottom:870.900000px;}
.y31{bottom:871.620000px;}
.ydd{bottom:873.960000px;}
.yc1{bottom:874.320000px;}
.y164{bottom:875.490000px;}
.y3{bottom:879.369000px;}
.y11c{bottom:883.320000px;}
.y1cb{bottom:887.820000px;}
.y5c{bottom:889.620000px;}
.y30{bottom:892.320000px;}
.ydb{bottom:894.660000px;}
.yc0{bottom:895.020000px;}
.y163{bottom:896.190000px;}
.ydc{bottom:901.410000px;}
.y11b{bottom:904.020000px;}
.y1ca{bottom:904.650000px;}
.y5b{bottom:910.320000px;}
.y2f{bottom:913.020000px;}
.y162{bottom:913.830000px;}
.yda{bottom:915.360000px;}
.ybf{bottom:915.720000px;}
.y1c9{bottom:921.570000px;}
.y13a{bottom:924.720000px;}
.y5a{bottom:931.020000px;}
.y2e{bottom:933.720000px;}
.yd9{bottom:936.060000px;}
.y161{bottom:936.330000px;}
.ybe{bottom:936.420000px;}
.y1c8{bottom:938.400000px;}
.y2{bottom:945.126001px;}
.y139{bottom:945.420000px;}
.y59{bottom:951.720000px;}
.y2d{bottom:954.420000px;}
.y1c7{bottom:955.320000px;}
.yd7{bottom:956.760000px;}
.ybd{bottom:957.120000px;}
.y160{bottom:958.830000px;}
.y11a{bottom:963.420000px;}
.yd8{bottom:963.510000px;}
.y138{bottom:966.120000px;}
.y1{bottom:966.726000px;}
.y1c6{bottom:972.150000px;}
.y58{bottom:972.420000px;}
.y2c{bottom:975.120000px;}
.yd6{bottom:977.460000px;}
.ybc{bottom:977.820000px;}
.y15f{bottom:981.330000px;}
.y1c4{bottom:989.070000px;}
.y57{bottom:993.120000px;}
.y2b{bottom:995.820000px;}
.yd5{bottom:998.160000px;}
.y15e{bottom:1003.830000px;}
.y1c3{bottom:1005.900000px;}
.y56{bottom:1013.820000px;}
.y2a{bottom:1016.520000px;}
.yd4{bottom:1018.860000px;}
.y1c1{bottom:1022.820000px;}
.y15d{bottom:1026.330000px;}
.y1bf{bottom:1032.900000px;}
.y55{bottom:1034.520000px;}
.y29{bottom:1037.220000px;}
.yd3{bottom:1039.560000px;}
.y1bd{bottom:1039.650000px;}
.y15c{bottom:1048.830000px;}
.y54{bottom:1055.220000px;}
.y28{bottom:1057.920000px;}
.y1bc{bottom:1059.450000px;}
.yd2{bottom:1060.260000px;}
.y137{bottom:1066.950000px;}
.y53{bottom:1075.950000px;}
.y27{bottom:1078.650000px;}
.y136{bottom:1087.650000px;}
.y52{bottom:1096.650000px;}
.yd1{bottom:1099.080000px;}
.y26{bottom:1099.350000px;}
.y135{bottom:1108.350000px;}
.y51{bottom:1117.350000px;}
.y25{bottom:1138.050000px;}
.y23{bottom:1192.770000px;}
.h2c{height:3.690000px;}
.h22{height:4.230000px;}
.h2b{height:6.750000px;}
.h2d{height:16.830000px;}
.h2a{height:16.920000px;}
.h23{height:17.190000px;}
.h24{height:17.280000px;}
.h25{height:18.270000px;}
.h18{height:22.500000px;}
.h21{height:22.530000px;}
.h26{height:23.700000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:34.470000px;}
.h1c{height:34.500000px;}
.h1b{height:34.560000px;}
.h14{height:38.700000px;}
.h15{height:38.730000px;}
.h1f{height:40.550625px;}
.h12{height:43.082578px;}
.h13{height:43.304062px;}
.h7{height:45.960000px;}
.h17{height:46.991602px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2e{height:48.410156px;}
.h29{height:52.998047px;}
.h1d{height:53.896641px;}
.h2{height:55.152000px;}
.h28{height:56.466006px;}
.h19{height:59.004492px;}
.h10{height:60.679688px;}
.hb{height:60.960938px;}
.h20{height:62.585859px;}
.hf{height:64.546875px;}
.h1e{height:65.526152px;}
.he{height:70.664062px;}
.h11{height:71.824219px;}
.h16{height:72.562500px;}
.hd{height:74.953125px;}
.hc{height:75.093750px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h27{height:673.935000px;}
.h0{height:1262.833500px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:40.500000px;}
.w10{width:62.550000px;}
.w12{width:63.450000px;}
.we{width:63.480000px;}
.w1c{width:64.650000px;}
.wc{width:66.330000px;}
.w13{width:71.010000px;}
.w24{width:72.000000px;}
.w25{width:72.030000px;}
.w26{width:75.330000px;}
.w5{width:75.870000px;}
.wa{width:81.270000px;}
.w11{width:88.500000px;}
.w23{width:96.060000px;}
.w20{width:98.370000px;}
.w1e{width:98.400000px;}
.w1f{width:98.460000px;}
.w1d{width:98.550000px;}
.w21{width:98.580000px;}
.w9{width:102.900000px;}
.w17{width:107.550000px;}
.w22{width:109.530000px;}
.w7{width:122.490000px;}
.w19{width:131.790000px;}
.wf{width:134.460000px;}
.w14{width:137.820000px;}
.w1a{width:138.720000px;}
.w18{width:147.690000px;}
.w6{width:399.570000px;}
.w16{width:418.200000px;}
.wb{width:455.820000px;}
.w1b{width:479.550000px;}
.w15{width:525.750000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w8{width:892.979973px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:5.220000px;}
.x33{left:8.130000px;}
.x5d{left:9.360000px;}
.x31{left:10.380000px;}
.x45{left:12.960000px;}
.x44{left:16.380000px;}
.x21{left:17.910000px;}
.x32{left:19.980000px;}
.x58{left:21.690000px;}
.x1f{left:22.950000px;}
.x23{left:24.930000px;}
.x35{left:26.280000px;}
.x24{left:27.900000px;}
.x36{left:29.700000px;}
.x34{left:30.720000px;}
.x39{left:32.520000px;}
.x1e{left:34.920000px;}
.x38{left:37.110000px;}
.x3a{left:39.180000px;}
.x30{left:40.590000px;}
.x37{left:42.690000px;}
.x5f{left:44.280000px;}
.x49{left:48.990000px;}
.x2e{left:51.420000px;}
.x5e{left:54.720000px;}
.x20{left:95.040000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:107.999987px;}
.x52{left:110.250000px;}
.x3b{left:113.399987px;}
.x60{left:117.749987px;}
.x22{left:125.100000px;}
.x25{left:131.310000px;}
.x19{left:147.540000px;}
.x1c{left:155.280000px;}
.x11{left:161.129987px;}
.x6{left:166.259987px;}
.x53{left:174.900000px;}
.x13{left:177.419987px;}
.x2a{left:183.989973px;}
.x2b{left:190.019987px;}
.x59{left:198.030000px;}
.x4{left:203.484001px;}
.x4f{left:206.700000px;}
.x14{left:216.659987px;}
.x3d{left:218.640000px;}
.x1b{left:223.410000px;}
.x3e{left:227.910000px;}
.x27{left:240.869987px;}
.x16{left:242.489987px;}
.x46{left:250.409987px;}
.x4c{left:262.830000px;}
.x50{left:273.576941px;}
.x51{left:275.789987px;}
.x3f{left:284.970000px;}
.x4a{left:287.669987px;}
.x10{left:305.759987px;}
.xe{left:307.739987px;}
.x4b{left:310.439987px;}
.x26{left:322.049987px;}
.xc{left:324.749987px;}
.x15{left:332.129987px;}
.x47{left:336.990000px;}
.x17{left:339.779987px;}
.x8{left:351.299987px;}
.x9{left:352.739987px;}
.x2d{left:354.450000px;}
.x3c{left:365.549987px;}
.x2c{left:367.439987px;}
.x54{left:371.850000px;}
.x7{left:386.339987px;}
.x40{left:388.950000px;}
.xb{left:390.029987px;}
.xd{left:391.829987px;}
.xf{left:398.309987px;}
.x5a{left:403.620000px;}
.x28{left:414.419973px;}
.x29{left:420.449987px;}
.xa{left:446.549987px;}
.x43{left:452.400000px;}
.x3{left:454.959000px;}
.x2f{left:457.350000px;}
.x4e{left:463.110000px;}
.x55{left:470.310000px;}
.x48{left:474.810000px;}
.x41{left:523.410000px;}
.x5b{left:547.620000px;}
.x56{left:568.680000px;}
.x42{left:585.960000px;}
.x12{left:595.949987px;}
.x4d{left:601.830000px;}
.x5c{left:619.650000px;}
.x1d{left:622.980000px;}
.x57{left:667.260000px;}
.x18{left:686.159987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v7{vertical-align:-71.360000pt;}
.v4{vertical-align:-38.400000pt;}
.v5{vertical-align:-37.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-13.760000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:19.520000pt;}
.ls21{letter-spacing:-8.106667pt;}
.ls10{letter-spacing:-4.992000pt;}
.ls12{letter-spacing:-4.160000pt;}
.ls20{letter-spacing:-1.024000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.148267pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.122133pt;}
.ls24{letter-spacing:-0.121067pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.093867pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.197760pt;}
.lsa{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.lsd{letter-spacing:1.360000pt;}
.ls26{letter-spacing:1.443725pt;}
.ls17{letter-spacing:1.478720pt;}
.ls18{letter-spacing:2.322240pt;}
.lse{letter-spacing:2.560000pt;}
.lsb{letter-spacing:5.451520pt;}
.ls1f{letter-spacing:6.080000pt;}
.ls13{letter-spacing:7.360000pt;}
.ls15{letter-spacing:21.606400pt;}
.ls8{letter-spacing:28.800000pt;}
.lsc{letter-spacing:64.651520pt;}
.ls3{letter-spacing:123.008000pt;}
.ls6{letter-spacing:174.720000pt;}
.ls19{letter-spacing:175.866667pt;}
.ls1{letter-spacing:919.786667pt;}
.ls28{letter-spacing:1171.733333pt;}
.ws2{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.680000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.520000pt;}
.ws17{word-spacing:-13.496533pt;}
.ws13{word-spacing:-13.407360pt;}
.wse{word-spacing:-13.360000pt;}
.ws14{word-spacing:-13.211733pt;}
.ws10{word-spacing:-13.200000pt;}
.ws9{word-spacing:-12.761067pt;}
.ws1e{word-spacing:-12.112000pt;}
.ws1f{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.904000pt;}
.ws20{word-spacing:-11.872000pt;}
.ws8{word-spacing:-11.840000pt;}
.wsf{word-spacing:-11.756800pt;}
.ws19{word-spacing:-11.662933pt;}
.ws18{word-spacing:-11.635733pt;}
.ws11{word-spacing:-11.590933pt;}
.ws6{word-spacing:-9.996800pt;}
.ws15{word-spacing:-7.893333pt;}
.wsc{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.192000pt;}
.wsd{word-spacing:1.664000pt;}
.ws1a{word-spacing:5.118251pt;}
.ws1d{word-spacing:7.955109pt;}
.ws1c{word-spacing:26.666934pt;}
.ws1b{word-spacing:29.084088pt;}
._11{margin-left:-130.794667pt;}
._1d{margin-left:-8.768000pt;}
._10{margin-left:-6.762667pt;}
._2{margin-left:-5.056000pt;}
._1{margin-left:-3.392000pt;}
._7{margin-left:-2.069333pt;}
._0{margin-left:-1.173333pt;}
._8{width:0.917333pt;}
._c{width:1.920000pt;}
._6{width:2.922667pt;}
._5{width:4.608000pt;}
._b{width:5.546667pt;}
._3{width:6.549333pt;}
._4{width:7.573333pt;}
._12{width:8.469333pt;}
._13{width:9.600000pt;}
._a{width:10.560000pt;}
._9{width:11.456000pt;}
._e{width:12.736000pt;}
._15{width:13.760000pt;}
._f{width:14.954667pt;}
._1a{width:17.024000pt;}
._16{width:17.984000pt;}
._18{width:19.776000pt;}
._d{width:20.672000pt;}
._14{width:22.272000pt;}
._17{width:23.552000pt;}
._19{width:24.618667pt;}
._1c{width:38.272000pt;}
._25{width:42.223719pt;}
._1b{width:43.200000pt;}
._27{width:44.887120pt;}
._26{width:46.028846pt;}
._24{width:50.773801pt;}
._23{width:53.811930pt;}
._22{width:75.106237pt;}
._1f{width:81.792000pt;}
._1e{width:82.752000pt;}
._20{width:97.573323pt;}
._21{width:166.426574pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.440000pt;}
.fs7{font-size:42.560000pt;}
.fs6{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:48.124170pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y1c2{bottom:-7.920000pt;}
.y1c0{bottom:-5.200000pt;}
.y0{bottom:0.000000pt;}
.y1c5{bottom:2.560000pt;}
.y1be{bottom:2.640000pt;}
.ye5{bottom:2.880000pt;}
.ye7{bottom:2.960000pt;}
.yeb{bottom:3.040000pt;}
.y16b{bottom:3.760000pt;}
.y172{bottom:3.840000pt;}
.yf3{bottom:7.280000pt;}
.yef{bottom:7.360000pt;}
.yf0{bottom:7.520000pt;}
.ye2{bottom:7.600000pt;}
.y174{bottom:8.560000pt;}
.y1bb{bottom:16.053169pt;}
.y153{bottom:18.000000pt;}
.ye9{bottom:18.160000pt;}
.ye4{bottom:18.240000pt;}
.yc9{bottom:19.440000pt;}
.y1d7{bottom:30.666667pt;}
.y1ba{bottom:31.066564pt;}
.y1b9{bottom:46.042433pt;}
.y6{bottom:59.133337pt;}
.y1b8{bottom:61.057392pt;}
.y24{bottom:75.600000pt;}
.y1b7{bottom:76.070787pt;}
.y5{bottom:86.333337pt;}
.y1b6{bottom:91.046656pt;}
.y106{bottom:98.880000pt;}
.ya4{bottom:100.480000pt;}
.y105{bottom:103.520000pt;}
.y1b5{bottom:106.061615pt;}
.y50{bottom:108.400000pt;}
.y18c{bottom:108.560000pt;}
.y15b{bottom:108.800000pt;}
.yba{bottom:110.000000pt;}
.y119{bottom:112.400000pt;}
.y104{bottom:114.240000pt;}
.y7c{bottom:114.800000pt;}
.y195{bottom:117.120000pt;}
.y134{bottom:118.800000pt;}
.ya3{bottom:118.880000pt;}
.y1b4{bottom:121.075009pt;}
.y22{bottom:123.790666pt;}
.y4f{bottom:126.800000pt;}
.y18b{bottom:126.960000pt;}
.yd0{bottom:128.320000pt;}
.yb9{bottom:128.400000pt;}
.y15a{bottom:128.800000pt;}
.y103{bottom:130.640000pt;}
.y118{bottom:130.800000pt;}
.y7b{bottom:133.200000pt;}
.y194{bottom:135.520000pt;}
.y1b3{bottom:136.050879pt;}
.y90{bottom:136.160000pt;}
.y133{bottom:137.200000pt;}
.ya2{bottom:137.280000pt;}
.y4e{bottom:145.200000pt;}
.y18a{bottom:145.360000pt;}
.yb8{bottom:146.800000pt;}
.y159{bottom:148.800000pt;}
.y117{bottom:149.200000pt;}
.y1b2{bottom:151.065837pt;}
.y7a{bottom:151.600000pt;}
.y193{bottom:153.920000pt;}
.y8f{bottom:154.560000pt;}
.y132{bottom:155.600000pt;}
.ya1{bottom:155.680000pt;}
.ycf{bottom:162.720000pt;}
.y4d{bottom:163.600000pt;}
.y189{bottom:163.760000pt;}
.yb7{bottom:165.200000pt;}
.y1b1{bottom:166.035452pt;}
.y116{bottom:167.600000pt;}
.y158{bottom:168.800000pt;}
.y79{bottom:170.000000pt;}
.y192{bottom:172.320000pt;}
.y8e{bottom:172.960000pt;}
.y102{bottom:173.760000pt;}
.ya0{bottom:174.080000pt;}
.y19{bottom:175.052000pt;}
.yce{bottom:179.680000pt;}
.y1b0{bottom:181.061356pt;}
.y4c{bottom:182.000000pt;}
.y188{bottom:182.160000pt;}
.yb6{bottom:183.600000pt;}
.y115{bottom:186.000000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y78{bottom:188.400000pt;}
.y157{bottom:188.800000pt;}
.y191{bottom:190.720000pt;}
.y8c{bottom:191.440000pt;}
.y101{bottom:192.160000pt;}
.y9f{bottom:192.480000pt;}
.y1af{bottom:196.071624pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y8d{bottom:197.520000pt;}
.y4b{bottom:200.426667pt;}
.y187{bottom:200.586667pt;}
.yb5{bottom:202.026667pt;}
.y114{bottom:204.426667pt;}
.y77{bottom:206.826667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y156{bottom:208.826667pt;}
.y190{bottom:209.146667pt;}
.y8b{bottom:210.106667pt;}
.y9e{bottom:210.906667pt;}
.y1ae{bottom:211.050620pt;}
.ycd{bottom:214.106667pt;}
.y4a{bottom:218.826667pt;}
.y186{bottom:218.986667pt;}
.yb4{bottom:220.426667pt;}
.y113{bottom:222.826667pt;}
.y76{bottom:225.226667pt;}
.y1ad{bottom:226.060888pt;}
.y131{bottom:226.826667pt;}
.y18f{bottom:227.546667pt;}
.y100{bottom:228.426667pt;}
.y155{bottom:228.826667pt;}
.y9d{bottom:229.306667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y49{bottom:237.226667pt;}
.y185{bottom:237.386667pt;}
.yb3{bottom:238.826667pt;}
.y1ac{bottom:241.071156pt;}
.y112{bottom:241.226667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y75{bottom:243.626667pt;}
.yff{bottom:243.706667pt;}
.y89{bottom:244.666667pt;}
.y130{bottom:245.226667pt;}
.y18e{bottom:245.946667pt;}
.y9c{bottom:247.706667pt;}
.ycc{bottom:248.506667pt;}
.y154{bottom:248.826667pt;}
.y8a{bottom:250.746667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y184{bottom:255.786667pt;}
.y1ab{bottom:256.050152pt;}
.yb2{bottom:257.226667pt;}
.yfe{bottom:259.066667pt;}
.y111{bottom:259.626667pt;}
.y74{bottom:262.026667pt;}
.y18d{bottom:264.346667pt;}
.y9b{bottom:266.106667pt;}
.y1aa{bottom:271.060420pt;}
.y48{bottom:271.626667pt;}
.y183{bottom:274.186667pt;}
.yfd{bottom:274.426667pt;}
.yb1{bottom:275.626667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y110{bottom:278.026667pt;}
.y88{bottom:279.306667pt;}
.y152{bottom:279.466667pt;}
.y196{bottom:280.306667pt;}
.y73{bottom:280.426667pt;}
.ycb{bottom:282.906667pt;}
.y9a{bottom:284.506667pt;}
.y1a9{bottom:286.039417pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yfc{bottom:289.706667pt;}
.y182{bottom:292.586667pt;}
.yb0{bottom:294.026667pt;}
.y10f{bottom:296.426667pt;}
.y87{bottom:297.706667pt;}
.y12f{bottom:298.026667pt;}
.y72{bottom:298.826667pt;}
.y1a8{bottom:301.049685pt;}
.y99{bottom:302.906667pt;}
.yfb{bottom:305.066667pt;}
.y47{bottom:306.026667pt;}
.y10{bottom:309.452000pt;}
.y151{bottom:310.106667pt;}
.y181{bottom:310.986667pt;}
.yaf{bottom:312.426667pt;}
.y10e{bottom:314.826667pt;}
.y1a7{bottom:316.075588pt;}
.y86{bottom:316.106667pt;}
.y12e{bottom:316.426667pt;}
.y71{bottom:317.226667pt;}
.yca{bottom:317.306667pt;}
.yfa{bottom:320.426667pt;}
.y98{bottom:321.306667pt;}
.y180{bottom:329.386667pt;}
.yae{bottom:330.826667pt;}
.y1a6{bottom:331.038949pt;}
.y10d{bottom:333.226667pt;}
.yf9{bottom:333.546667pt;}
.y150{bottom:334.266667pt;}
.y85{bottom:334.506667pt;}
.y12d{bottom:334.826667pt;}
.y70{bottom:335.626667pt;}
.y1e1{bottom:337.946667pt;}
.y97{bottom:339.706667pt;}
.y46{bottom:340.426667pt;}
.yf{bottom:343.809333pt;}
.y1a5{bottom:346.064852pt;}
.y17f{bottom:347.786667pt;}
.yad{bottom:349.226667pt;}
.y10c{bottom:351.626667pt;}
.yc8{bottom:352.346667pt;}
.y14f{bottom:352.666667pt;}
.y84{bottom:352.906667pt;}
.yf8{bottom:353.546667pt;}
.y6f{bottom:354.026667pt;}
.y96{bottom:358.106667pt;}
.y1a4{bottom:361.075120pt;}
.y12c{bottom:361.226667pt;}
.ye{bottom:362.706666pt;}
.y1e0{bottom:364.346667pt;}
.y17e{bottom:366.186667pt;}
.yac{bottom:367.626667pt;}
.y10b{bottom:370.026667pt;}
.y14e{bottom:371.066667pt;}
.y83{bottom:371.306667pt;}
.y6e{bottom:372.426667pt;}
.yf7{bottom:373.546667pt;}
.y45{bottom:374.826667pt;}
.y1a3{bottom:376.054117pt;}
.y95{bottom:376.506667pt;}
.y12b{bottom:379.626667pt;}
.y17d{bottom:384.586667pt;}
.yab{bottom:386.026667pt;}
.y10a{bottom:388.426667pt;}
.y14d{bottom:389.466667pt;}
.y82{bottom:389.706667pt;}
.y1df{bottom:390.746667pt;}
.y6d{bottom:390.826667pt;}
.y1a2{bottom:391.064385pt;}
.yc7{bottom:393.226667pt;}
.yf6{bottom:393.546667pt;}
.y94{bottom:394.906667pt;}
.y17c{bottom:402.986667pt;}
.yaa{bottom:404.426667pt;}
.y14c{bottom:405.066667pt;}
.y12a{bottom:406.026667pt;}
.y1a1{bottom:406.043381pt;}
.y109{bottom:406.826667pt;}
.y81{bottom:408.106667pt;}
.y44{bottom:409.226667pt;}
.y93{bottom:413.306667pt;}
.yf5{bottom:413.546667pt;}
.y1de{bottom:417.146667pt;}
.y1a0{bottom:421.053649pt;}
.y17b{bottom:421.386667pt;}
.ya9{bottom:422.826667pt;}
.y129{bottom:424.426667pt;}
.y14b{bottom:425.066667pt;}
.y108{bottom:425.226667pt;}
.y80{bottom:426.506667pt;}
.y43{bottom:427.626667pt;}
.y92{bottom:431.706667pt;}
.yf4{bottom:433.546667pt;}
.y19f{bottom:436.063917pt;}
.y17a{bottom:439.786667pt;}
.ya8{bottom:441.226667pt;}
.y1dd{bottom:443.546667pt;}
.y7f{bottom:444.906667pt;}
.y14a{bottom:445.066667pt;}
.y42{bottom:446.026667pt;}
.yd{bottom:446.990669pt;}
.y128{bottom:450.826667pt;}
.y19e{bottom:451.042913pt;}
.y107{bottom:451.626667pt;}
.yf2{bottom:453.546667pt;}
.y179{bottom:458.186667pt;}
.ya7{bottom:459.626667pt;}
.y1dc{bottom:461.946667pt;}
.y6c{bottom:462.026667pt;}
.y91{bottom:462.666667pt;}
.yc{bottom:462.990669pt;}
.y7e{bottom:463.306667pt;}
.y41{bottom:464.426667pt;}
.y149{bottom:465.066667pt;}
.y19d{bottom:466.053181pt;}
.y127{bottom:469.226667pt;}
.yf1{bottom:473.546667pt;}
.y178{bottom:476.586667pt;}
.ya6{bottom:478.026667pt;}
.yb{bottom:478.990666pt;}
.y1db{bottom:480.346667pt;}
.y19c{bottom:481.079085pt;}
.y40{bottom:482.826667pt;}
.y148{bottom:485.066667pt;}
.y126{bottom:487.626667pt;}
.yee{bottom:493.546667pt;}
.y7d{bottom:494.266667pt;}
.y177{bottom:494.426667pt;}
.ya{bottom:494.990666pt;}
.y19b{bottom:496.042445pt;}
.y6b{bottom:496.426667pt;}
.y1da{bottom:498.746667pt;}
.y3f{bottom:501.226667pt;}
.y147{bottom:505.066667pt;}
.y176{bottom:509.786667pt;}
.y19a{bottom:511.068349pt;}
.yed{bottom:513.546667pt;}
.y125{bottom:513.946667pt;}
.y1d9{bottom:514.426667pt;}
.y6a{bottom:514.826667pt;}
.y3e{bottom:519.626667pt;}
.y146{bottom:525.066667pt;}
.y199{bottom:526.031710pt;}
.y124{bottom:532.346667pt;}
.y69{bottom:533.226667pt;}
.y1d8{bottom:534.426667pt;}
.y3d{bottom:537.946667pt;}
.y175{bottom:540.426667pt;}
.y198{bottom:541.057613pt;}
.yec{bottom:544.186667pt;}
.y145{bottom:545.066667pt;}
.y123{bottom:550.746667pt;}
.y68{bottom:551.626667pt;}
.y173{bottom:552.826667pt;}
.y1d6{bottom:554.426667pt;}
.y3c{bottom:556.346667pt;}
.y144{bottom:565.066667pt;}
.y67{bottom:569.946667pt;}
.y197{bottom:571.046878pt;}
.y9{bottom:573.786667pt;}
.y171{bottom:573.893333pt;}
.y3b{bottom:574.773333pt;}
.yea{bottom:574.853333pt;}
.y122{bottom:577.173333pt;}
.y143{bottom:585.093333pt;}
.y66{bottom:588.373333pt;}
.y170{bottom:590.133333pt;}
.y8{bottom:592.685334pt;}
.y3a{bottom:593.173333pt;}
.y121{bottom:595.573333pt;}
.y142{bottom:605.093333pt;}
.y16f{bottom:605.493333pt;}
.ye8{bottom:605.573333pt;}
.y65{bottom:606.773333pt;}
.y39{bottom:611.573333pt;}
.y16e{bottom:620.853333pt;}
.y120{bottom:621.973333pt;}
.y141{bottom:625.093333pt;}
.y64{bottom:625.173333pt;}
.y1d5{bottom:629.173333pt;}
.y38{bottom:629.973333pt;}
.y16c{bottom:636.133333pt;}
.ye6{bottom:636.213333pt;}
.y11f{bottom:640.373333pt;}
.y63{bottom:643.573333pt;}
.y140{bottom:645.093333pt;}
.y7{bottom:645.598667pt;}
.y1d4{bottom:647.573333pt;}
.y37{bottom:648.373333pt;}
.y16d{bottom:651.493333pt;}
.y11e{bottom:658.773333pt;}
.y62{bottom:661.973333pt;}
.y1d3{bottom:665.973333pt;}
.ybb{bottom:666.773333pt;}
.ye3{bottom:666.853333pt;}
.y4{bottom:668.977329pt;}
.y13f{bottom:669.173333pt;}
.ya5{bottom:680.373333pt;}
.y16a{bottom:682.133333pt;}
.y36{bottom:682.773333pt;}
.yc6{bottom:685.173333pt;}
.y13e{bottom:687.573333pt;}
.y169{bottom:688.773333pt;}
.ye1{bottom:697.493333pt;}
.y61{bottom:698.773333pt;}
.y35{bottom:701.173333pt;}
.y1d2{bottom:702.773333pt;}
.yc5{bottom:703.573333pt;}
.y168{bottom:704.693333pt;}
.y13d{bottom:705.973333pt;}
.y60{bottom:717.173333pt;}
.y34{bottom:719.573333pt;}
.y1d1{bottom:720.373333pt;}
.ye0{bottom:721.653333pt;}
.yc4{bottom:721.973333pt;}
.y167{bottom:723.093333pt;}
.y13c{bottom:724.373333pt;}
.y1d0{bottom:734.133333pt;}
.y5f{bottom:735.573333pt;}
.y33{bottom:737.973333pt;}
.ydf{bottom:740.053333pt;}
.yc3{bottom:740.373333pt;}
.y166{bottom:741.413333pt;}
.y1cf{bottom:747.973333pt;}
.y13b{bottom:750.773333pt;}
.y5e{bottom:753.973333pt;}
.y32{bottom:756.373333pt;}
.yde{bottom:758.453333pt;}
.yc2{bottom:758.773333pt;}
.y1ce{bottom:759.173333pt;}
.y165{bottom:759.813333pt;}
.y11d{bottom:766.773333pt;}
.y1cd{bottom:768.133333pt;}
.y5d{bottom:772.373333pt;}
.y1cc{bottom:774.133333pt;}
.y31{bottom:774.773333pt;}
.ydd{bottom:776.853333pt;}
.yc1{bottom:777.173333pt;}
.y164{bottom:778.213333pt;}
.y3{bottom:781.661334pt;}
.y11c{bottom:785.173333pt;}
.y1cb{bottom:789.173333pt;}
.y5c{bottom:790.773333pt;}
.y30{bottom:793.173333pt;}
.ydb{bottom:795.253333pt;}
.yc0{bottom:795.573333pt;}
.y163{bottom:796.613333pt;}
.ydc{bottom:801.253333pt;}
.y11b{bottom:803.573333pt;}
.y1ca{bottom:804.133333pt;}
.y5b{bottom:809.173333pt;}
.y2f{bottom:811.573333pt;}
.y162{bottom:812.293333pt;}
.yda{bottom:813.653333pt;}
.ybf{bottom:813.973333pt;}
.y1c9{bottom:819.173333pt;}
.y13a{bottom:821.973333pt;}
.y5a{bottom:827.573333pt;}
.y2e{bottom:829.973333pt;}
.yd9{bottom:832.053333pt;}
.y161{bottom:832.293333pt;}
.ybe{bottom:832.373333pt;}
.y1c8{bottom:834.133333pt;}
.y2{bottom:840.112001pt;}
.y139{bottom:840.373333pt;}
.y59{bottom:845.973333pt;}
.y2d{bottom:848.373333pt;}
.y1c7{bottom:849.173333pt;}
.yd7{bottom:850.453333pt;}
.ybd{bottom:850.773333pt;}
.y160{bottom:852.293333pt;}
.y11a{bottom:856.373333pt;}
.yd8{bottom:856.453333pt;}
.y138{bottom:858.773333pt;}
.y1{bottom:859.312000pt;}
.y1c6{bottom:864.133333pt;}
.y58{bottom:864.373333pt;}
.y2c{bottom:866.773333pt;}
.yd6{bottom:868.853333pt;}
.ybc{bottom:869.173333pt;}
.y15f{bottom:872.293333pt;}
.y1c4{bottom:879.173333pt;}
.y57{bottom:882.773333pt;}
.y2b{bottom:885.173333pt;}
.yd5{bottom:887.253333pt;}
.y15e{bottom:892.293333pt;}
.y1c3{bottom:894.133333pt;}
.y56{bottom:901.173333pt;}
.y2a{bottom:903.573333pt;}
.yd4{bottom:905.653333pt;}
.y1c1{bottom:909.173333pt;}
.y15d{bottom:912.293333pt;}
.y1bf{bottom:918.133333pt;}
.y55{bottom:919.573333pt;}
.y29{bottom:921.973333pt;}
.yd3{bottom:924.053333pt;}
.y1bd{bottom:924.133333pt;}
.y15c{bottom:932.293333pt;}
.y54{bottom:937.973333pt;}
.y28{bottom:940.373333pt;}
.y1bc{bottom:941.733333pt;}
.yd2{bottom:942.453333pt;}
.y137{bottom:948.400000pt;}
.y53{bottom:956.400000pt;}
.y27{bottom:958.800000pt;}
.y136{bottom:966.800000pt;}
.y52{bottom:974.800000pt;}
.yd1{bottom:976.960000pt;}
.y26{bottom:977.200000pt;}
.y135{bottom:985.200000pt;}
.y51{bottom:993.200000pt;}
.y25{bottom:1011.600000pt;}
.y23{bottom:1060.240000pt;}
.h2c{height:3.280000pt;}
.h22{height:3.760000pt;}
.h2b{height:6.000000pt;}
.h2d{height:14.960000pt;}
.h2a{height:15.040000pt;}
.h23{height:15.280000pt;}
.h24{height:15.360000pt;}
.h25{height:16.240000pt;}
.h18{height:20.000000pt;}
.h21{height:20.026667pt;}
.h26{height:21.066667pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:30.640000pt;}
.h1c{height:30.666667pt;}
.h1b{height:30.720000pt;}
.h14{height:34.400000pt;}
.h15{height:34.426667pt;}
.h1f{height:36.045000pt;}
.h12{height:38.295625pt;}
.h13{height:38.492500pt;}
.h7{height:40.853333pt;}
.h17{height:41.770312pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2e{height:43.031250pt;}
.h29{height:47.109375pt;}
.h1d{height:47.908125pt;}
.h2{height:49.024000pt;}
.h28{height:50.192005pt;}
.h19{height:52.448437pt;}
.h10{height:53.937500pt;}
.hb{height:54.187500pt;}
.h20{height:55.631875pt;}
.hf{height:57.375000pt;}
.h1e{height:58.245469pt;}
.he{height:62.812500pt;}
.h11{height:63.843750pt;}
.h16{height:64.500000pt;}
.hd{height:66.625000pt;}
.hc{height:66.750000pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h27{height:599.053333pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:36.000000pt;}
.w10{width:55.600000pt;}
.w12{width:56.400000pt;}
.we{width:56.426667pt;}
.w1c{width:57.466667pt;}
.wc{width:58.960000pt;}
.w13{width:63.120000pt;}
.w24{width:64.000000pt;}
.w25{width:64.026667pt;}
.w26{width:66.960000pt;}
.w5{width:67.440000pt;}
.wa{width:72.240000pt;}
.w11{width:78.666667pt;}
.w23{width:85.386667pt;}
.w20{width:87.440000pt;}
.w1e{width:87.466667pt;}
.w1f{width:87.520000pt;}
.w1d{width:87.600000pt;}
.w21{width:87.626667pt;}
.w9{width:91.466667pt;}
.w17{width:95.600000pt;}
.w22{width:97.360000pt;}
.w7{width:108.880000pt;}
.w19{width:117.146667pt;}
.wf{width:119.520000pt;}
.w14{width:122.506667pt;}
.w1a{width:123.306667pt;}
.w18{width:131.280000pt;}
.w6{width:355.173333pt;}
.w16{width:371.733333pt;}
.wb{width:405.173333pt;}
.w1b{width:426.266667pt;}
.w15{width:467.333333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w8{width:793.759976pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:4.640000pt;}
.x33{left:7.226667pt;}
.x5d{left:8.320000pt;}
.x31{left:9.226667pt;}
.x45{left:11.520000pt;}
.x44{left:14.560000pt;}
.x21{left:15.920000pt;}
.x32{left:17.760000pt;}
.x58{left:19.280000pt;}
.x1f{left:20.400000pt;}
.x23{left:22.160000pt;}
.x35{left:23.360000pt;}
.x24{left:24.800000pt;}
.x36{left:26.400000pt;}
.x34{left:27.306667pt;}
.x39{left:28.906667pt;}
.x1e{left:31.040000pt;}
.x38{left:32.986667pt;}
.x3a{left:34.826667pt;}
.x30{left:36.080000pt;}
.x37{left:37.946667pt;}
.x5f{left:39.360000pt;}
.x49{left:43.546667pt;}
.x2e{left:45.706667pt;}
.x5e{left:48.640000pt;}
.x20{left:84.480000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:95.999988pt;}
.x52{left:98.000000pt;}
.x3b{left:100.799988pt;}
.x60{left:104.666655pt;}
.x22{left:111.200000pt;}
.x25{left:116.720000pt;}
.x19{left:131.146667pt;}
.x1c{left:138.026667pt;}
.x11{left:143.226655pt;}
.x6{left:147.786655pt;}
.x53{left:155.466667pt;}
.x13{left:157.706655pt;}
.x2a{left:163.546643pt;}
.x2b{left:168.906655pt;}
.x59{left:176.026667pt;}
.x4{left:180.874667pt;}
.x4f{left:183.733333pt;}
.x14{left:192.586655pt;}
.x3d{left:194.346667pt;}
.x1b{left:198.586667pt;}
.x3e{left:202.586667pt;}
.x27{left:214.106655pt;}
.x16{left:215.546655pt;}
.x46{left:222.586655pt;}
.x4c{left:233.626667pt;}
.x50{left:243.179503pt;}
.x51{left:245.146655pt;}
.x3f{left:253.306667pt;}
.x4a{left:255.706655pt;}
.x10{left:271.786655pt;}
.xe{left:273.546655pt;}
.x4b{left:275.946655pt;}
.x26{left:286.266655pt;}
.xc{left:288.666655pt;}
.x15{left:295.226655pt;}
.x47{left:299.546667pt;}
.x17{left:302.026655pt;}
.x8{left:312.266655pt;}
.x9{left:313.546655pt;}
.x2d{left:315.066667pt;}
.x3c{left:324.933322pt;}
.x2c{left:326.613322pt;}
.x54{left:330.533333pt;}
.x7{left:343.413322pt;}
.x40{left:345.733333pt;}
.xb{left:346.693322pt;}
.xd{left:348.293322pt;}
.xf{left:354.053322pt;}
.x5a{left:358.773333pt;}
.x28{left:368.373310pt;}
.x29{left:373.733322pt;}
.xa{left:396.933322pt;}
.x43{left:402.133333pt;}
.x3{left:404.408000pt;}
.x2f{left:406.533333pt;}
.x4e{left:411.653333pt;}
.x55{left:418.053333pt;}
.x48{left:422.053333pt;}
.x41{left:465.253333pt;}
.x5b{left:486.773333pt;}
.x56{left:505.493333pt;}
.x42{left:520.853333pt;}
.x12{left:529.733322pt;}
.x4d{left:534.960000pt;}
.x5c{left:550.800000pt;}
.x1d{left:553.760000pt;}
.x57{left:593.120000pt;}
.x18{left:609.919988pt;}
}




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