
    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_c6d01be29f0dfbe8c10b92d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_aa9a0673e0565dc0cb1f5dbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_ede2ac732a2774ff77863442.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.054000;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_57d743884053bef1301e1fa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130000;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_eac76af81e6afc16fbf713cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_89b4f2d35913f4a37d1caa56.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.054000;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_739268ca29d8dd37fb454a03.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995000;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_59526445630dce48a41ca00d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995000;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_bc6555521a02cbe95980dbfd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.121000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.054000;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_75ff73992db7f5a508b9d26c.woff2')format("woff");}.fff{font-family:fff;line-height:1.128000;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_f988685a295c5daee9bac01d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973000;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_4947eb7373d01d8e9ce5da02.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.681000;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_e1e00758c76c7a8707c134d5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.090000;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:ff13;src:url('chunks/assets/font_d8c47e958590702514b83eb1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;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:ff14;src:url('chunks/assets/font_0e9866da4c1ef77dc4d425c1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.994000;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;}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.434800px;}
.ls3{letter-spacing:-0.306000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.306000px;}
.ls8{letter-spacing:0.397800px;}
.lsa{letter-spacing:0.405000px;}
.ls7{letter-spacing:0.428400px;}
.ls2{letter-spacing:0.450000px;}
.ls6{letter-spacing:0.612000px;}
.ls9{letter-spacing:1.346400px;}
.ls4{letter-spacing:128.659706px;}
.ls1{letter-spacing:129.559706px;}
.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:-34.200000px;}
.ws9{word-spacing:-19.555200px;}
.wsc{word-spacing:-16.891200px;}
.ws0{word-spacing:-15.129107px;}
.ws3{word-spacing:-14.256000px;}
.ws4{word-spacing:-13.770000px;}
.ws26{word-spacing:-13.586400px;}
.ws24{word-spacing:-12.668400px;}
.ws25{word-spacing:-12.637800px;}
.wse{word-spacing:-12.546000px;}
.wsa{word-spacing:-12.240000px;}
.wsb{word-spacing:-11.934000px;}
.wsf{word-spacing:-10.794000px;}
.wsd{word-spacing:-7.135920px;}
.ws2a{word-spacing:-2.876400px;}
.ws1c{word-spacing:-1.974000px;}
.ws1e{word-spacing:-1.260000px;}
.ws7{word-spacing:-1.224000px;}
.ws1d{word-spacing:-0.966000px;}
.ws28{word-spacing:-0.612000px;}
.ws5{word-spacing:-0.450000px;}
.ws27{word-spacing:-0.428400px;}
.ws10{word-spacing:-0.306000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.306000px;}
.ws21{word-spacing:1.774800px;}
.ws1f{word-spacing:2.203200px;}
.ws19{word-spacing:2.264400px;}
.ws12{word-spacing:3.444000px;}
.ws22{word-spacing:5.018400px;}
.ws11{word-spacing:9.072000px;}
.ws13{word-spacing:11.077200px;}
.ws6{word-spacing:11.444400px;}
.ws15{word-spacing:12.240000px;}
.ws14{word-spacing:16.830000px;}
.ws17{word-spacing:28.886400px;}
.ws23{word-spacing:86.674706px;}
.ws29{word-spacing:90.409706px;}
.ws1a{word-spacing:94.594706px;}
.ws16{word-spacing:95.269706px;}
.ws20{word-spacing:95.989706px;}
.ws1b{word-spacing:96.889706px;}
.ws18{word-spacing:99.139706px;}
._2f{margin-left:-13.049880px;}
._25{margin-left:-11.974728px;}
._23{margin-left:-10.038000px;}
._11{margin-left:-7.695600px;}
._14{margin-left:-6.120000px;}
._10{margin-left:-5.005440px;}
._a{margin-left:-3.538800px;}
._b{margin-left:-2.280000px;}
._9{margin-left:-1.035000px;}
._5{width:1.700664px;}
._8{width:3.673434px;}
._12{width:5.533200px;}
._3{width:6.734629px;}
._6{width:7.959108px;}
._1a{width:9.040499px;}
._e{width:10.081056px;}
._f{width:11.175576px;}
._2{width:13.809392px;}
._13{width:14.957280px;}
._17{width:16.089480px;}
._1c{width:17.227800px;}
._18{width:18.519120px;}
._c{width:20.263320px;}
._d{width:22.111560px;}
._15{width:23.138514px;}
._4{width:24.183442px;}
._26{width:25.587196px;}
._1b{width:26.683200px;}
._19{width:27.686880px;}
._1{width:29.183394px;}
._2a{width:30.651846px;}
._1f{width:31.793400px;}
._1e{width:33.161520px;}
._1d{width:34.743240px;}
._22{width:36.720000px;}
._20{width:37.784880px;}
._27{width:39.250920px;}
._24{width:41.248800px;}
._2b{width:42.595200px;}
._2c{width:43.758000px;}
._31{width:45.168960px;}
._7{width:46.598194px;}
._28{width:47.846160px;}
._16{width:50.349240px;}
._29{width:51.450840px;}
._2d{width:54.903846px;}
._21{width:55.964640px;}
._30{width:57.209760px;}
._32{width:59.731200px;}
._2e{width:82.020240px;}
._0{width:846.085199px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.013280px;}
.fsd{font-size:35.679600px;}
.fs3{font-size:38.872320px;}
.fse{font-size:42.000000px;}
.fs6{font-size:42.759552px;}
.fs7{font-size:43.731360px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:48.590400px;}
.fs1{font-size:53.449440px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:54.421248px;}
.fsb{font-size:61.200000px;}
.fsc{font-size:67.200000px;}
.fs0{font-size:68.026560px;}
.fs9{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307530px;}
.y34{bottom:47.074950px;}
.y1e{bottom:48.137850px;}
.y1c{bottom:51.809514px;}
.y33{bottom:63.578700px;}
.y32{bottom:63.649500px;}
.y1d{bottom:64.889550px;}
.y1b{bottom:65.584892px;}
.y1a{bottom:79.360271px;}
.y19{bottom:93.135649px;}
.y18{bottom:104.906674px;}
.y17{bottom:127.209667px;}
.y58{bottom:127.714500px;}
.y1ca{bottom:127.724400px;}
.y21f{bottom:127.749000px;}
.yce{bottom:127.755900px;}
.y7b{bottom:127.762800px;}
.y174{bottom:127.765800px;}
.y106{bottom:127.769700px;}
.y206{bottom:127.771200px;}
.y15d{bottom:127.774200px;}
.y1f7{bottom:127.776450px;}
.y1b4{bottom:127.776600px;}
.yfb{bottom:127.778100px;}
.yb5{bottom:127.792500px;}
.yb4{bottom:144.288000px;}
.y57{bottom:148.721400px;}
.y1c9{bottom:148.731300px;}
.y15c{bottom:148.735200px;}
.y11a{bottom:148.755900px;}
.y1b9{bottom:148.757400px;}
.ycd{bottom:148.762800px;}
.y7a{bottom:148.769700px;}
.y1d3{bottom:148.771200px;}
.y173{bottom:148.772700px;}
.y12e{bottom:148.776600px;}
.y205{bottom:148.778100px;}
.y1f6{bottom:148.783350px;}
.y1b3{bottom:148.783500px;}
.yb3{bottom:160.783500px;}
.y56{bottom:169.728300px;}
.y1c8{bottom:169.738200px;}
.y15b{bottom:169.742100px;}
.y172{bottom:169.749000px;}
.y79{bottom:169.757400px;}
.y119{bottom:169.762800px;}
.y13c{bottom:169.764300px;}
.y14b{bottom:169.765800px;}
.y1f5{bottom:169.769550px;}
.ycc{bottom:169.769700px;}
.y1b2{bottom:169.771200px;}
.y212{bottom:169.779600px;}
.y12d{bottom:169.783500px;}
.y55{bottom:190.735200px;}
.y1c7{bottom:190.745100px;}
.y15a{bottom:190.749000px;}
.y1f4{bottom:190.755750px;}
.y171{bottom:190.755900px;}
.yb2{bottom:190.762800px;}
.y78{bottom:190.764300px;}
.y19d{bottom:190.765800px;}
.y118{bottom:190.769700px;}
.ye8{bottom:190.771200px;}
.y14a{bottom:190.772700px;}
.y9a{bottom:190.776600px;}
.y16{bottom:192.004966px;}
.y15{bottom:202.330426px;}
.y54{bottom:211.742100px;}
.y149{bottom:211.749000px;}
.y159{bottom:211.755900px;}
.y1f3{bottom:211.762650px;}
.y13b{bottom:211.762800px;}
.y117{bottom:211.764300px;}
.yb1{bottom:211.769700px;}
.y77{bottom:211.771200px;}
.y19c{bottom:211.772700px;}
.y1bf{bottom:211.776600px;}
.ye7{bottom:211.778100px;}
.y99{bottom:211.783500px;}
.y14{bottom:211.805554px;}
.y13{bottom:220.406054px;}
.y12{bottom:229.018703px;}
.y1c6{bottom:232.743600px;}
.y53{bottom:232.749000px;}
.y98{bottom:232.755900px;}
.y12c{bottom:232.757400px;}
.y158{bottom:232.762800px;}
.y204{bottom:232.764300px;}
.y1b1{bottom:232.765800px;}
.y1f2{bottom:232.769550px;}
.ye6{bottom:232.769700px;}
.y116{bottom:232.771200px;}
.yb0{bottom:232.776600px;}
.y76{bottom:232.778100px;}
.y1be{bottom:232.783500px;}
.y11{bottom:237.631351px;}
.y10{bottom:246.231852px;}
.y188{bottom:253.749000px;}
.y1bd{bottom:253.750500px;}
.y52{bottom:253.755900px;}
.y1f1{bottom:253.762650px;}
.y97{bottom:253.762800px;}
.ye5{bottom:253.764300px;}
.y75{bottom:253.769700px;}
.y13a{bottom:253.771200px;}
.y1b0{bottom:253.772700px;}
.y192{bottom:253.776600px;}
.y115{bottom:253.778100px;}
.yaf{bottom:253.783500px;}
.yf{bottom:254.844500px;}
.ye{bottom:272.555701px;}
.y187{bottom:274.755900px;}
.y157{bottom:274.757400px;}
.y51{bottom:274.762800px;}
.yfa{bottom:274.764300px;}
.y1f0{bottom:274.769550px;}
.y74{bottom:274.769700px;}
.ye4{bottom:274.771200px;}
.yae{bottom:274.771500px;}
.y1d2{bottom:274.776600px;}
.y139{bottom:274.778100px;}
.y1af{bottom:274.779600px;}
.y191{bottom:274.783500px;}
.y1c5{bottom:295.749000px;}
.ycb{bottom:295.755900px;}
.y168{bottom:295.757400px;}
.y105{bottom:295.758900px;}
.ye3{bottom:295.762800px;}
.y156{bottom:295.764300px;}
.y50{bottom:295.769700px;}
.yf9{bottom:295.771200px;}
.y96{bottom:295.775700px;}
.y1ef{bottom:295.776450px;}
.y73{bottom:295.776600px;}
.yad{bottom:295.777500px;}
.y1d6{bottom:295.778100px;}
.y1d1{bottom:295.783500px;}
.y21e{bottom:316.742100px;}
.y4f{bottom:316.755900px;}
.y180{bottom:316.757400px;}
.yca{bottom:316.762800px;}
.y167{bottom:316.764300px;}
.y104{bottom:316.765800px;}
.ye2{bottom:316.769700px;}
.y12b{bottom:316.771200px;}
.y1a7{bottom:316.776600px;}
.y138{bottom:316.777200px;}
.y95{bottom:316.782600px;}
.y1ee{bottom:316.783350px;}
.y72{bottom:316.783500px;}
.y94{bottom:337.728300px;}
.y21d{bottom:337.749000px;}
.y114{bottom:337.755900px;}
.y71{bottom:337.757400px;}
.y4e{bottom:337.762800px;}
.y17f{bottom:337.764300px;}
.y1ed{bottom:337.769550px;}
.yc9{bottom:337.769700px;}
.y166{bottom:337.771200px;}
.y103{bottom:337.772700px;}
.y203{bottom:337.776600px;}
.y155{bottom:337.778100px;}
.y1a6{bottom:337.783500px;}
.y137{bottom:337.784100px;}
.y136{bottom:358.714500px;}
.y93{bottom:358.735200px;}
.yac{bottom:358.749000px;}
.y21c{bottom:358.755900px;}
.yc8{bottom:358.762800px;}
.y70{bottom:358.764300px;}
.y4d{bottom:358.769700px;}
.yf8{bottom:358.771200px;}
.y1ae{bottom:358.772700px;}
.y1ec{bottom:358.776450px;}
.ye1{bottom:358.776600px;}
.y170{bottom:358.778100px;}
.y202{bottom:358.783500px;}
.y135{bottom:379.721400px;}
.y92{bottom:379.742100px;}
.yab{bottom:379.755900px;}
.y1bc{bottom:379.762800px;}
.y1c4{bottom:379.764300px;}
.y4c{bottom:379.765800px;}
.y12a{bottom:379.767300px;}
.yc7{bottom:379.769700px;}
.y6f{bottom:379.771200px;}
.y148{bottom:379.776600px;}
.yf7{bottom:379.778100px;}
.y1ad{bottom:379.779600px;}
.y1eb{bottom:379.783350px;}
.ye0{bottom:379.783500px;}
.y134{bottom:400.728300px;}
.y91{bottom:400.749000px;}
.y1ac{bottom:400.755900px;}
.y113{bottom:400.757400px;}
.y1ea{bottom:400.762650px;}
.yaa{bottom:400.762800px;}
.yc6{bottom:400.764300px;}
.ydf{bottom:400.765800px;}
.yf6{bottom:400.769700px;}
.y1c3{bottom:400.771200px;}
.y4b{bottom:400.772700px;}
.y129{bottom:400.774200px;}
.y6e{bottom:400.778100px;}
.y147{bottom:400.783500px;}
.yd{bottom:409.204054px;}
.y128{bottom:421.735200px;}
.y4a{bottom:421.749000px;}
.y90{bottom:421.755900px;}
.y1ab{bottom:421.762800px;}
.y112{bottom:421.764300px;}
.y21b{bottom:421.767300px;}
.y1e9{bottom:421.769550px;}
.y6d{bottom:421.769700px;}
.yc5{bottom:421.771200px;}
.yde{bottom:421.772700px;}
.y31{bottom:421.776450px;}
.y186{bottom:421.776600px;}
.y1c2{bottom:421.778100px;}
.y165{bottom:421.779600px;}
.y222{bottom:421.781100px;}
.y127{bottom:442.742100px;}
.y6c{bottom:442.749000px;}
.y49{bottom:442.755900px;}
.y211{bottom:442.757400px;}
.y190{bottom:442.758900px;}
.y8f{bottom:442.762800px;}
.y1e8{bottom:442.764150px;}
.y102{bottom:442.767300px;}
.y1aa{bottom:442.769700px;}
.y111{bottom:442.771200px;}
.y21a{bottom:442.774200px;}
.y154{bottom:442.776600px;}
.yf5{bottom:442.778100px;}
.ydd{bottom:442.779600px;}
.y30{bottom:442.783350px;}
.y185{bottom:442.783500px;}
.y126{bottom:463.749000px;}
.y6b{bottom:463.755900px;}
.y48{bottom:463.762800px;}
.y210{bottom:463.764300px;}
.y18f{bottom:463.765800px;}
.y8e{bottom:463.769700px;}
.y1e7{bottom:463.771050px;}
.y1b8{bottom:463.771200px;}
.y101{bottom:463.774200px;}
.y17e{bottom:463.778100px;}
.y219{bottom:463.781100px;}
.y2f{bottom:463.783350px;}
.y153{bottom:463.783500px;}
.y218{bottom:484.742100px;}
.y1d0{bottom:484.749000px;}
.y125{bottom:484.755900px;}
.y184{bottom:484.757400px;}
.y1e6{bottom:484.762650px;}
.y6a{bottom:484.762800px;}
.y100{bottom:484.765800px;}
.y16f{bottom:484.767300px;}
.y47{bottom:484.769700px;}
.y1d5{bottom:484.771200px;}
.yc4{bottom:484.772700px;}
.y152{bottom:484.777500px;}
.y1b7{bottom:484.778100px;}
.y1e5{bottom:505.744950px;}
.y164{bottom:505.749000px;}
.y17d{bottom:505.750500px;}
.y2e{bottom:505.755750px;}
.y110{bottom:505.755900px;}
.y19b{bottom:505.757400px;}
.y124{bottom:505.762800px;}
.y46{bottom:505.764300px;}
.y69{bottom:505.769700px;}
.y146{bottom:505.771200px;}
.y16e{bottom:505.774200px;}
.ya9{bottom:505.776600px;}
.y1d4{bottom:505.778100px;}
.yc3{bottom:505.779600px;}
.y151{bottom:505.783500px;}
.y16d{bottom:526.735200px;}
.y1e4{bottom:526.751850px;}
.yc2{bottom:526.755900px;}
.y17c{bottom:526.757400px;}
.y2d{bottom:526.762650px;}
.yf4{bottom:526.762800px;}
.y68{bottom:526.764300px;}
.y123{bottom:526.769700px;}
.y45{bottom:526.771200px;}
.ydc{bottom:526.772700px;}
.y8d{bottom:526.776600px;}
.y145{bottom:526.778100px;}
.ya8{bottom:526.783500px;}
.y16c{bottom:547.742100px;}
.y20f{bottom:547.755900px;}
.y1e3{bottom:547.758750px;}
.y44{bottom:547.762800px;}
.y17b{bottom:547.764300px;}
.y1a5{bottom:547.765800px;}
.y2c{bottom:547.769550px;}
.yf3{bottom:547.769700px;}
.y67{bottom:547.771200px;}
.y8b{bottom:547.776600px;}
.y1a9{bottom:547.778100px;}
.ydb{bottom:547.779600px;}
.y8c{bottom:547.783500px;}
.y16b{bottom:568.749000px;}
.yda{bottom:568.755900px;}
.y1cf{bottom:568.757400px;}
.y10f{bottom:568.758900px;}
.y66{bottom:568.762800px;}
.y1e2{bottom:568.765650px;}
.y43{bottom:568.769700px;}
.y2b{bottom:568.771050px;}
.y17a{bottom:568.771200px;}
.y1a4{bottom:568.772700px;}
.yf2{bottom:568.775550px;}
.y133{bottom:568.776600px;}
.y122{bottom:568.778100px;}
.y8a{bottom:568.783500px;}
.y150{bottom:589.755900px;}
.y89{bottom:589.762800px;}
.y1ce{bottom:589.764300px;}
.y10e{bottom:589.765800px;}
.y65{bottom:589.769700px;}
.y42{bottom:589.771200px;}
.y1e1{bottom:589.772550px;}
.yc1{bottom:589.774050px;}
.y163{bottom:589.776600px;}
.y2a{bottom:589.777950px;}
.y1a3{bottom:589.779600px;}
.yf1{bottom:589.782450px;}
.y132{bottom:589.783500px;}
.yc{bottom:592.061876px;}
.yf0{bottom:610.728150px;}
.y1e0{bottom:610.748850px;}
.y1a2{bottom:610.755900px;}
.y201{bottom:610.757400px;}
.y64{bottom:610.762800px;}
.y121{bottom:610.764300px;}
.y20e{bottom:610.767150px;}
.y29{bottom:610.769550px;}
.y88{bottom:610.769700px;}
.y1cd{bottom:610.771200px;}
.yff{bottom:610.772700px;}
.y131{bottom:610.774050px;}
.y41{bottom:610.778100px;}
.yc0{bottom:610.780950px;}
.y162{bottom:610.783500px;}
.yb{bottom:618.616530px;}
.yef{bottom:631.735050px;}
.ybf{bottom:631.741950px;}
.y10d{bottom:631.749000px;}
.y1df{bottom:631.755750px;}
.y161{bottom:631.755900px;}
.y28{bottom:631.762650px;}
.yd9{bottom:631.762800px;}
.y87{bottom:631.764150px;}
.y179{bottom:631.764300px;}
.y40{bottom:631.769700px;}
.y120{bottom:631.771200px;}
.y20d{bottom:631.774050px;}
.y18e{bottom:631.776600px;}
.y1cc{bottom:631.778100px;}
.yfe{bottom:631.779600px;}
.y130{bottom:631.780950px;}
.ya{bottom:632.391908px;}
.y20c{bottom:652.735050px;}
.yee{bottom:652.741950px;}
.ybe{bottom:652.748850px;}
.y3f{bottom:652.755900px;}
.y1de{bottom:652.762650px;}
.y160{bottom:652.762800px;}
.y14f{bottom:652.764150px;}
.y27{bottom:652.769550px;}
.yd8{bottom:652.769700px;}
.y86{bottom:652.771050px;}
.ya7{bottom:652.771200px;}
.y217{bottom:652.774050px;}
.y11f{bottom:652.778100px;}
.y1bb{bottom:652.783500px;}
.y9{bottom:659.213809px;}
.y8{bottom:672.989188px;}
.y20b{bottom:673.741950px;}
.yed{bottom:673.748850px;}
.ybd{bottom:673.755750px;}
.y3e{bottom:673.762800px;}
.y18d{bottom:673.764150px;}
.yd7{bottom:673.765650px;}
.y1dd{bottom:673.769550px;}
.y11e{bottom:673.769700px;}
.y14e{bottom:673.771050px;}
.y1a1{bottom:673.772550px;}
.y26{bottom:673.776450px;}
.y1cb{bottom:673.776600px;}
.y25{bottom:673.777350px;}
.y85{bottom:673.777950px;}
.ya6{bottom:673.778100px;}
.y216{bottom:673.780950px;}
.y223{bottom:673.783500px;}
.y7{bottom:686.764566px;}
.y215{bottom:694.741950px;}
.y20a{bottom:694.748850px;}
.yec{bottom:694.755750px;}
.ybc{bottom:694.762650px;}
.y1dc{bottom:694.765650px;}
.y84{bottom:694.769550px;}
.y3d{bottom:694.769700px;}
.y18c{bottom:694.771050px;}
.yd6{bottom:694.772550px;}
.y19a{bottom:694.776600px;}
.y1c1{bottom:694.777950px;}
.y1a0{bottom:694.779450px;}
.y24{bottom:694.783350px;}
.y6{bottom:700.539944px;}
.yd5{bottom:715.748850px;}
.y19f{bottom:715.755750px;}
.y1a8{bottom:715.757250px;}
.yeb{bottom:715.762650px;}
.y63{bottom:715.764150px;}
.y10c{bottom:715.767150px;}
.ybb{bottom:715.769550px;}
.ya5{bottom:715.771050px;}
.y3c{bottom:715.772550px;}
.y200{bottom:715.772700px;}
.y83{bottom:715.776450px;}
.y15f{bottom:715.776600px;}
.y1ba{bottom:715.777950px;}
.y199{bottom:715.783500px;}
.y1b6{bottom:736.750350px;}
.yd4{bottom:736.755750px;}
.y19e{bottom:736.762650px;}
.y14d{bottom:736.764150px;}
.y82{bottom:736.769550px;}
.y62{bottom:736.771050px;}
.y183{bottom:736.772550px;}
.y10b{bottom:736.774050px;}
.ya4{bottom:736.777950px;}
.y3b{bottom:736.779450px;}
.y1ff{bottom:736.779600px;}
.y198{bottom:736.782600px;}
.y15e{bottom:736.783500px;}
.y197{bottom:757.728300px;}
.y1db{bottom:757.755750px;}
.y1fe{bottom:757.755900px;}
.y12f{bottom:757.757250px;}
.y61{bottom:757.762650px;}
.yea{bottom:757.764150px;}
.y81{bottom:757.765650px;}
.ya3{bottom:757.769550px;}
.y11d{bottom:757.771050px;}
.y144{bottom:757.776450px;}
.yba{bottom:757.777950px;}
.y182{bottom:757.779450px;}
.y10a{bottom:757.780950px;}
.y3a{bottom:757.786350px;}
.y22{bottom:759.328650px;}
.y5{bottom:764.727863px;}
.y196{bottom:778.735200px;}
.y109{bottom:778.741950px;}
.y181{bottom:778.755750px;}
.y14c{bottom:778.762650px;}
.y1fd{bottom:778.762800px;}
.ya2{bottom:778.764150px;}
.y209{bottom:778.765800px;}
.y60{bottom:778.769550px;}
.ye9{bottom:778.771050px;}
.y80{bottom:778.772550px;}
.y221{bottom:778.776450px;}
.y11c{bottom:778.777950px;}
.y143{bottom:778.783350px;}
.y4{bottom:785.160126px;}
.y21{bottom:792.331650px;}
.y195{bottom:799.742100px;}
.y108{bottom:799.748850px;}
.yd3{bottom:799.755750px;}
.y5f{bottom:799.757400px;}
.y142{bottom:799.759500px;}
.yb9{bottom:799.762650px;}
.y7f{bottom:799.764150px;}
.y11b{bottom:799.769550px;}
.y1fc{bottom:799.769700px;}
.ya1{bottom:799.771050px;}
.y208{bottom:799.772700px;}
.y16a{bottom:799.776450px;}
.y18b{bottom:799.777950px;}
.y220{bottom:799.783350px;}
.y39{bottom:799.784850px;}
.y3{bottom:809.260964px;}
.y194{bottom:820.749000px;}
.y107{bottom:820.755750px;}
.yd2{bottom:820.762650px;}
.y5e{bottom:820.764300px;}
.y141{bottom:820.766400px;}
.yb8{bottom:820.769550px;}
.y7e{bottom:820.771050px;}
.y1da{bottom:820.776450px;}
.y1fb{bottom:820.776600px;}
.ya0{bottom:820.777950px;}
.y207{bottom:820.779600px;}
.y169{bottom:820.783350px;}
.y20{bottom:825.334650px;}
.y2{bottom:833.373950px;}
.y193{bottom:841.755900px;}
.yb7{bottom:841.762650px;}
.y9f{bottom:841.769550px;}
.y5d{bottom:841.771200px;}
.y140{bottom:841.773300px;}
.y7d{bottom:841.777950px;}
.y38{bottom:841.783350px;}
.y1fa{bottom:841.783500px;}
.y1f{bottom:858.337650px;}
.y9e{bottom:862.752600px;}
.y178{bottom:862.758000px;}
.y5c{bottom:862.762800px;}
.y13f{bottom:862.764900px;}
.yb6{bottom:862.769550px;}
.y214{bottom:862.773300px;}
.yd1{bottom:862.776450px;}
.y7c{bottom:862.778100px;}
.y18a{bottom:862.780200px;}
.y37{bottom:862.783500px;}
.y9d{bottom:883.759500px;}
.y177{bottom:883.764900px;}
.y1d9{bottom:883.769550px;}
.y5b{bottom:883.769700px;}
.y13e{bottom:883.771800px;}
.y213{bottom:883.780200px;}
.yd0{bottom:883.783350px;}
.y36{bottom:883.783500px;}
.y9c{bottom:904.766400px;}
.y1f9{bottom:904.771650px;}
.y176{bottom:904.771800px;}
.yfd{bottom:904.773300px;}
.y1d8{bottom:904.776450px;}
.y5a{bottom:904.776600px;}
.ycf{bottom:904.777500px;}
.y13d{bottom:904.778700px;}
.y35{bottom:904.783500px;}
.y189{bottom:925.758000px;}
.y175{bottom:925.767900px;}
.y1c0{bottom:925.771800px;}
.y9b{bottom:925.773300px;}
.y1f8{bottom:925.778550px;}
.y1b5{bottom:925.778700px;}
.yfc{bottom:925.780200px;}
.y1d7{bottom:925.783350px;}
.y23{bottom:925.783500px;}
.y59{bottom:925.793100px;}
.h7{height:25.203840px;}
.h6{height:28.804389px;}
.h9{height:32.404938px;}
.h25{height:35.952000px;}
.h5{height:36.005486px;}
.hd{height:38.520000px;}
.h4{height:39.606035px;}
.h8{height:40.326145px;}
.hc{height:41.085000px;}
.h24{height:41.688000px;}
.h10{height:43.207200px;}
.h17{height:47.246400px;}
.h2c{height:48.960000px;}
.h28{height:49.021200px;}
.hf{height:49.734000px;}
.h3{height:50.407681px;}
.h11{height:50.918400px;}
.h13{height:50.940000px;}
.h12{height:50.979600px;}
.h14{height:51.001200px;}
.h16{height:51.285600px;}
.h22{height:51.289200px;}
.h29{height:51.289800px;}
.h26{height:51.295800px;}
.h2e{height:51.298200px;}
.h27{height:51.301200px;}
.h18{height:51.301800px;}
.h31{height:51.304200px;}
.h33{height:51.305400px;}
.h2f{height:51.306600px;}
.h1a{height:51.307200px;}
.h23{height:51.307800px;}
.h20{height:51.312600px;}
.h1e{height:51.313200px;}
.h34{height:51.328800px;}
.h32{height:51.334800px;}
.h21{height:51.340800px;}
.h1b{height:51.346800px;}
.h2a{height:51.356400px;}
.h2d{height:51.359400px;}
.h1c{height:51.361800px;}
.h1f{height:51.362400px;}
.h30{height:51.363000px;}
.h35{height:51.367800px;}
.h19{height:51.368400px;}
.h2b{height:51.369000px;}
.h1d{height:51.408000px;}
.h15{height:61.353600px;}
.he{height:105.564000px;}
.ha{height:1020.714000px;}
.hb{height:1020.750000px;}
.h2{height:1022.694296px;}
.h1{height:1023.000000px;}
.h0{height:1023.300000px;}
.w1{width:723.000000px;}
.w2{width:723.119100px;}
.w0{width:723.120000px;}
.x0{left:0.000000px;}
.x3{left:37.876217px;}
.x5{left:43.178850px;}
.x1{left:44.763906px;}
.x6{left:83.663850px;}
.x11{left:84.726900px;}
.xb{left:92.940900px;}
.x1a{left:97.192950px;}
.x14{left:101.444850px;}
.xd{left:103.729800px;}
.x18{left:105.696750px;}
.xe{left:109.266600px;}
.x2{left:120.516340px;}
.x16{left:241.752600px;}
.x7{left:272.940900px;}
.x4{left:354.673477px;}
.xf{left:367.193802px;}
.xc{left:375.700200px;}
.x17{left:379.953000px;}
.x10{left:384.200700px;}
.x19{left:388.456050px;}
.x12{left:392.710350px;}
.xa{left:438.916725px;}
.x9{left:587.299950px;}
.x15{left:668.031000px;}
.x13{left:670.303050px;}
.x8{left:672.460500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.164267pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.272000pt;}
.ls8{letter-spacing:0.353600pt;}
.lsa{letter-spacing:0.360000pt;}
.ls7{letter-spacing:0.380800pt;}
.ls2{letter-spacing:0.400000pt;}
.ls6{letter-spacing:0.544000pt;}
.ls9{letter-spacing:1.196800pt;}
.ls4{letter-spacing:114.364183pt;}
.ls1{letter-spacing:115.164183pt;}
.ws2{word-spacing:-30.400000pt;}
.ws9{word-spacing:-17.382400pt;}
.wsc{word-spacing:-15.014400pt;}
.ws0{word-spacing:-13.448095pt;}
.ws3{word-spacing:-12.672000pt;}
.ws4{word-spacing:-12.240000pt;}
.ws26{word-spacing:-12.076800pt;}
.ws24{word-spacing:-11.260800pt;}
.ws25{word-spacing:-11.233600pt;}
.wse{word-spacing:-11.152000pt;}
.wsa{word-spacing:-10.880000pt;}
.wsb{word-spacing:-10.608000pt;}
.wsf{word-spacing:-9.594667pt;}
.wsd{word-spacing:-6.343040pt;}
.ws2a{word-spacing:-2.556800pt;}
.ws1c{word-spacing:-1.754667pt;}
.ws1e{word-spacing:-1.120000pt;}
.ws7{word-spacing:-1.088000pt;}
.ws1d{word-spacing:-0.858667pt;}
.ws28{word-spacing:-0.544000pt;}
.ws5{word-spacing:-0.400000pt;}
.ws27{word-spacing:-0.380800pt;}
.ws10{word-spacing:-0.272000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.272000pt;}
.ws21{word-spacing:1.577600pt;}
.ws1f{word-spacing:1.958400pt;}
.ws19{word-spacing:2.012800pt;}
.ws12{word-spacing:3.061333pt;}
.ws22{word-spacing:4.460800pt;}
.ws11{word-spacing:8.064000pt;}
.ws13{word-spacing:9.846400pt;}
.ws6{word-spacing:10.172800pt;}
.ws15{word-spacing:10.880000pt;}
.ws14{word-spacing:14.960000pt;}
.ws17{word-spacing:25.676800pt;}
.ws23{word-spacing:77.044183pt;}
.ws29{word-spacing:80.364183pt;}
.ws1a{word-spacing:84.084183pt;}
.ws16{word-spacing:84.684183pt;}
.ws20{word-spacing:85.324183pt;}
.ws1b{word-spacing:86.124183pt;}
.ws18{word-spacing:88.124183pt;}
._2f{margin-left:-11.599893pt;}
._25{margin-left:-10.644203pt;}
._23{margin-left:-8.922667pt;}
._11{margin-left:-6.840533pt;}
._14{margin-left:-5.440000pt;}
._10{margin-left:-4.449280pt;}
._a{margin-left:-3.145600pt;}
._b{margin-left:-2.026667pt;}
._9{margin-left:-0.920000pt;}
._5{width:1.511701pt;}
._8{width:3.265275pt;}
._12{width:4.918400pt;}
._3{width:5.986337pt;}
._6{width:7.074762pt;}
._1a{width:8.035999pt;}
._e{width:8.960939pt;}
._f{width:9.933845pt;}
._2{width:12.275015pt;}
._13{width:13.295360pt;}
._17{width:14.301760pt;}
._1c{width:15.313600pt;}
._18{width:16.461440pt;}
._c{width:18.011840pt;}
._d{width:19.654720pt;}
._15{width:20.567568pt;}
._4{width:21.496393pt;}
._26{width:22.744174pt;}
._1b{width:23.718400pt;}
._19{width:24.610560pt;}
._1{width:25.940795pt;}
._2a{width:27.246085pt;}
._1f{width:28.260800pt;}
._1e{width:29.476907pt;}
._1d{width:30.882880pt;}
._22{width:32.640000pt;}
._20{width:33.586560pt;}
._27{width:34.889707pt;}
._24{width:36.665600pt;}
._2b{width:37.862400pt;}
._2c{width:38.896000pt;}
._31{width:40.150187pt;}
._7{width:41.420617pt;}
._28{width:42.529920pt;}
._16{width:44.754880pt;}
._29{width:45.734080pt;}
._2d{width:48.803418pt;}
._21{width:49.746347pt;}
._30{width:50.853120pt;}
._32{width:53.094400pt;}
._2e{width:72.906880pt;}
._0{width:752.075732pt;}
.fs4{font-size:30.234027pt;}
.fsd{font-size:31.715200pt;}
.fs3{font-size:34.553173pt;}
.fse{font-size:37.333333pt;}
.fs6{font-size:38.008491pt;}
.fs7{font-size:38.872320pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:43.191467pt;}
.fs1{font-size:47.510613pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:48.374443pt;}
.fsb{font-size:54.400000pt;}
.fsc{font-size:59.733333pt;}
.fs0{font-size:60.468053pt;}
.fs9{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273360pt;}
.y34{bottom:41.844400pt;}
.y1e{bottom:42.789200pt;}
.y1c{bottom:46.052901pt;}
.y33{bottom:56.514400pt;}
.y32{bottom:56.577333pt;}
.y1d{bottom:57.679600pt;}
.y1b{bottom:58.297682pt;}
.y1a{bottom:70.542463pt;}
.y19{bottom:82.787244pt;}
.y18{bottom:93.250377pt;}
.y17{bottom:113.075260pt;}
.y58{bottom:113.524000pt;}
.y1ca{bottom:113.532800pt;}
.y21f{bottom:113.554667pt;}
.yce{bottom:113.560800pt;}
.y7b{bottom:113.566933pt;}
.y174{bottom:113.569600pt;}
.y106{bottom:113.573067pt;}
.y206{bottom:113.574400pt;}
.y15d{bottom:113.577067pt;}
.y1f7{bottom:113.579067pt;}
.y1b4{bottom:113.579200pt;}
.yfb{bottom:113.580533pt;}
.yb5{bottom:113.593333pt;}
.yb4{bottom:128.256000pt;}
.y57{bottom:132.196800pt;}
.y1c9{bottom:132.205600pt;}
.y15c{bottom:132.209067pt;}
.y11a{bottom:132.227467pt;}
.y1b9{bottom:132.228800pt;}
.ycd{bottom:132.233600pt;}
.y7a{bottom:132.239733pt;}
.y1d3{bottom:132.241067pt;}
.y173{bottom:132.242400pt;}
.y12e{bottom:132.245867pt;}
.y205{bottom:132.247200pt;}
.y1f6{bottom:132.251867pt;}
.y1b3{bottom:132.252000pt;}
.yb3{bottom:142.918667pt;}
.y56{bottom:150.869600pt;}
.y1c8{bottom:150.878400pt;}
.y15b{bottom:150.881867pt;}
.y172{bottom:150.888000pt;}
.y79{bottom:150.895467pt;}
.y119{bottom:150.900267pt;}
.y13c{bottom:150.901600pt;}
.y14b{bottom:150.902933pt;}
.y1f5{bottom:150.906267pt;}
.ycc{bottom:150.906400pt;}
.y1b2{bottom:150.907733pt;}
.y212{bottom:150.915200pt;}
.y12d{bottom:150.918667pt;}
.y55{bottom:169.542400pt;}
.y1c7{bottom:169.551200pt;}
.y15a{bottom:169.554667pt;}
.y1f4{bottom:169.560667pt;}
.y171{bottom:169.560800pt;}
.yb2{bottom:169.566933pt;}
.y78{bottom:169.568267pt;}
.y19d{bottom:169.569600pt;}
.y118{bottom:169.573067pt;}
.ye8{bottom:169.574400pt;}
.y14a{bottom:169.575733pt;}
.y9a{bottom:169.579200pt;}
.y16{bottom:170.671081pt;}
.y15{bottom:179.849267pt;}
.y54{bottom:188.215200pt;}
.y149{bottom:188.221333pt;}
.y159{bottom:188.227467pt;}
.y1f3{bottom:188.233467pt;}
.y13b{bottom:188.233600pt;}
.y117{bottom:188.234933pt;}
.yb1{bottom:188.239733pt;}
.y77{bottom:188.241067pt;}
.y19c{bottom:188.242400pt;}
.y1bf{bottom:188.245867pt;}
.ye7{bottom:188.247200pt;}
.y99{bottom:188.252000pt;}
.y14{bottom:188.271603pt;}
.y13{bottom:195.916493pt;}
.y12{bottom:203.572180pt;}
.y1c6{bottom:206.883200pt;}
.y53{bottom:206.888000pt;}
.y98{bottom:206.894133pt;}
.y12c{bottom:206.895467pt;}
.y158{bottom:206.900267pt;}
.y204{bottom:206.901600pt;}
.y1b1{bottom:206.902933pt;}
.y1f2{bottom:206.906267pt;}
.ye6{bottom:206.906400pt;}
.y116{bottom:206.907733pt;}
.yb0{bottom:206.912533pt;}
.y76{bottom:206.913867pt;}
.y1be{bottom:206.918667pt;}
.y11{bottom:211.227868pt;}
.y10{bottom:218.872757pt;}
.y188{bottom:225.554667pt;}
.y1bd{bottom:225.556000pt;}
.y52{bottom:225.560800pt;}
.y1f1{bottom:225.566800pt;}
.y97{bottom:225.566933pt;}
.ye5{bottom:225.568267pt;}
.y75{bottom:225.573067pt;}
.y13a{bottom:225.574400pt;}
.y1b0{bottom:225.575733pt;}
.y192{bottom:225.579200pt;}
.y115{bottom:225.580533pt;}
.yaf{bottom:225.585333pt;}
.yf{bottom:226.528445pt;}
.ye{bottom:242.271734pt;}
.y187{bottom:244.227467pt;}
.y157{bottom:244.228800pt;}
.y51{bottom:244.233600pt;}
.yfa{bottom:244.234933pt;}
.y1f0{bottom:244.239600pt;}
.y74{bottom:244.239733pt;}
.ye4{bottom:244.241067pt;}
.yae{bottom:244.241333pt;}
.y1d2{bottom:244.245867pt;}
.y139{bottom:244.247200pt;}
.y1af{bottom:244.248533pt;}
.y191{bottom:244.252000pt;}
.y1c5{bottom:262.888000pt;}
.ycb{bottom:262.894133pt;}
.y168{bottom:262.895467pt;}
.y105{bottom:262.896800pt;}
.ye3{bottom:262.900267pt;}
.y156{bottom:262.901600pt;}
.y50{bottom:262.906400pt;}
.yf9{bottom:262.907733pt;}
.y96{bottom:262.911733pt;}
.y1ef{bottom:262.912400pt;}
.y73{bottom:262.912533pt;}
.yad{bottom:262.913333pt;}
.y1d6{bottom:262.913867pt;}
.y1d1{bottom:262.918667pt;}
.y21e{bottom:281.548533pt;}
.y4f{bottom:281.560800pt;}
.y180{bottom:281.562133pt;}
.yca{bottom:281.566933pt;}
.y167{bottom:281.568267pt;}
.y104{bottom:281.569600pt;}
.ye2{bottom:281.573067pt;}
.y12b{bottom:281.574400pt;}
.y1a7{bottom:281.579200pt;}
.y138{bottom:281.579733pt;}
.y95{bottom:281.584533pt;}
.y1ee{bottom:281.585200pt;}
.y72{bottom:281.585333pt;}
.y94{bottom:300.202933pt;}
.y21d{bottom:300.221333pt;}
.y114{bottom:300.227467pt;}
.y71{bottom:300.228800pt;}
.y4e{bottom:300.233600pt;}
.y17f{bottom:300.234933pt;}
.y1ed{bottom:300.239600pt;}
.yc9{bottom:300.239733pt;}
.y166{bottom:300.241067pt;}
.y103{bottom:300.242400pt;}
.y203{bottom:300.245867pt;}
.y155{bottom:300.247200pt;}
.y1a6{bottom:300.252000pt;}
.y137{bottom:300.252533pt;}
.y136{bottom:318.857333pt;}
.y93{bottom:318.875733pt;}
.yac{bottom:318.888000pt;}
.y21c{bottom:318.894133pt;}
.yc8{bottom:318.900267pt;}
.y70{bottom:318.901600pt;}
.y4d{bottom:318.906400pt;}
.yf8{bottom:318.907733pt;}
.y1ae{bottom:318.909067pt;}
.y1ec{bottom:318.912400pt;}
.ye1{bottom:318.912533pt;}
.y170{bottom:318.913867pt;}
.y202{bottom:318.918667pt;}
.y135{bottom:337.530133pt;}
.y92{bottom:337.548533pt;}
.yab{bottom:337.560800pt;}
.y1bc{bottom:337.566933pt;}
.y1c4{bottom:337.568267pt;}
.y4c{bottom:337.569600pt;}
.y12a{bottom:337.570933pt;}
.yc7{bottom:337.573067pt;}
.y6f{bottom:337.574400pt;}
.y148{bottom:337.579200pt;}
.yf7{bottom:337.580533pt;}
.y1ad{bottom:337.581867pt;}
.y1eb{bottom:337.585200pt;}
.ye0{bottom:337.585333pt;}
.y134{bottom:356.202933pt;}
.y91{bottom:356.221333pt;}
.y1ac{bottom:356.227467pt;}
.y113{bottom:356.228800pt;}
.y1ea{bottom:356.233467pt;}
.yaa{bottom:356.233600pt;}
.yc6{bottom:356.234933pt;}
.ydf{bottom:356.236267pt;}
.yf6{bottom:356.239733pt;}
.y1c3{bottom:356.241067pt;}
.y4b{bottom:356.242400pt;}
.y129{bottom:356.243733pt;}
.y6e{bottom:356.247200pt;}
.y147{bottom:356.252000pt;}
.yd{bottom:363.736937pt;}
.y128{bottom:374.875733pt;}
.y4a{bottom:374.888000pt;}
.y90{bottom:374.894133pt;}
.y1ab{bottom:374.900267pt;}
.y112{bottom:374.901600pt;}
.y21b{bottom:374.904267pt;}
.y1e9{bottom:374.906267pt;}
.y6d{bottom:374.906400pt;}
.yc5{bottom:374.907733pt;}
.yde{bottom:374.909067pt;}
.y31{bottom:374.912400pt;}
.y186{bottom:374.912533pt;}
.y1c2{bottom:374.913867pt;}
.y165{bottom:374.915200pt;}
.y222{bottom:374.916533pt;}
.y127{bottom:393.548533pt;}
.y6c{bottom:393.554667pt;}
.y49{bottom:393.560800pt;}
.y211{bottom:393.562133pt;}
.y190{bottom:393.563467pt;}
.y8f{bottom:393.566933pt;}
.y1e8{bottom:393.568133pt;}
.y102{bottom:393.570933pt;}
.y1aa{bottom:393.573067pt;}
.y111{bottom:393.574400pt;}
.y21a{bottom:393.577067pt;}
.y154{bottom:393.579200pt;}
.yf5{bottom:393.580533pt;}
.ydd{bottom:393.581867pt;}
.y30{bottom:393.585200pt;}
.y185{bottom:393.585333pt;}
.y126{bottom:412.221333pt;}
.y6b{bottom:412.227467pt;}
.y48{bottom:412.233600pt;}
.y210{bottom:412.234933pt;}
.y18f{bottom:412.236267pt;}
.y8e{bottom:412.239733pt;}
.y1e7{bottom:412.240933pt;}
.y1b8{bottom:412.241067pt;}
.y101{bottom:412.243733pt;}
.y17e{bottom:412.247200pt;}
.y219{bottom:412.249867pt;}
.y2f{bottom:412.251867pt;}
.y153{bottom:412.252000pt;}
.y218{bottom:430.881867pt;}
.y1d0{bottom:430.888000pt;}
.y125{bottom:430.894133pt;}
.y184{bottom:430.895467pt;}
.y1e6{bottom:430.900133pt;}
.y6a{bottom:430.900267pt;}
.y100{bottom:430.902933pt;}
.y16f{bottom:430.904267pt;}
.y47{bottom:430.906400pt;}
.y1d5{bottom:430.907733pt;}
.yc4{bottom:430.909067pt;}
.y152{bottom:430.913333pt;}
.y1b7{bottom:430.913867pt;}
.y1e5{bottom:449.551067pt;}
.y164{bottom:449.554667pt;}
.y17d{bottom:449.556000pt;}
.y2e{bottom:449.560667pt;}
.y110{bottom:449.560800pt;}
.y19b{bottom:449.562133pt;}
.y124{bottom:449.566933pt;}
.y46{bottom:449.568267pt;}
.y69{bottom:449.573067pt;}
.y146{bottom:449.574400pt;}
.y16e{bottom:449.577067pt;}
.ya9{bottom:449.579200pt;}
.y1d4{bottom:449.580533pt;}
.yc3{bottom:449.581867pt;}
.y151{bottom:449.585333pt;}
.y16d{bottom:468.209067pt;}
.y1e4{bottom:468.223867pt;}
.yc2{bottom:468.227467pt;}
.y17c{bottom:468.228800pt;}
.y2d{bottom:468.233467pt;}
.yf4{bottom:468.233600pt;}
.y68{bottom:468.234933pt;}
.y123{bottom:468.239733pt;}
.y45{bottom:468.241067pt;}
.ydc{bottom:468.242400pt;}
.y8d{bottom:468.245867pt;}
.y145{bottom:468.247200pt;}
.ya8{bottom:468.252000pt;}
.y16c{bottom:486.881867pt;}
.y20f{bottom:486.894133pt;}
.y1e3{bottom:486.896667pt;}
.y44{bottom:486.900267pt;}
.y17b{bottom:486.901600pt;}
.y1a5{bottom:486.902933pt;}
.y2c{bottom:486.906267pt;}
.yf3{bottom:486.906400pt;}
.y67{bottom:486.907733pt;}
.y8b{bottom:486.912533pt;}
.y1a9{bottom:486.913867pt;}
.ydb{bottom:486.915200pt;}
.y8c{bottom:486.918667pt;}
.y16b{bottom:505.554667pt;}
.yda{bottom:505.560800pt;}
.y1cf{bottom:505.562133pt;}
.y10f{bottom:505.563467pt;}
.y66{bottom:505.566933pt;}
.y1e2{bottom:505.569467pt;}
.y43{bottom:505.573067pt;}
.y2b{bottom:505.574267pt;}
.y17a{bottom:505.574400pt;}
.y1a4{bottom:505.575733pt;}
.yf2{bottom:505.578267pt;}
.y133{bottom:505.579200pt;}
.y122{bottom:505.580533pt;}
.y8a{bottom:505.585333pt;}
.y150{bottom:524.227467pt;}
.y89{bottom:524.233600pt;}
.y1ce{bottom:524.234933pt;}
.y10e{bottom:524.236267pt;}
.y65{bottom:524.239733pt;}
.y42{bottom:524.241067pt;}
.y1e1{bottom:524.242267pt;}
.yc1{bottom:524.243600pt;}
.y163{bottom:524.245867pt;}
.y2a{bottom:524.247067pt;}
.y1a3{bottom:524.248533pt;}
.yf1{bottom:524.251067pt;}
.y132{bottom:524.252000pt;}
.yc{bottom:526.277223pt;}
.yf0{bottom:542.869467pt;}
.y1e0{bottom:542.887867pt;}
.y1a2{bottom:542.894133pt;}
.y201{bottom:542.895467pt;}
.y64{bottom:542.900267pt;}
.y121{bottom:542.901600pt;}
.y20e{bottom:542.904133pt;}
.y29{bottom:542.906267pt;}
.y88{bottom:542.906400pt;}
.y1cd{bottom:542.907733pt;}
.yff{bottom:542.909067pt;}
.y131{bottom:542.910267pt;}
.y41{bottom:542.913867pt;}
.yc0{bottom:542.916400pt;}
.y162{bottom:542.918667pt;}
.yb{bottom:549.881360pt;}
.yef{bottom:561.542267pt;}
.ybf{bottom:561.548400pt;}
.y10d{bottom:561.554667pt;}
.y1df{bottom:561.560667pt;}
.y161{bottom:561.560800pt;}
.y28{bottom:561.566800pt;}
.yd9{bottom:561.566933pt;}
.y87{bottom:561.568133pt;}
.y179{bottom:561.568267pt;}
.y40{bottom:561.573067pt;}
.y120{bottom:561.574400pt;}
.y20d{bottom:561.576933pt;}
.y18e{bottom:561.579200pt;}
.y1cc{bottom:561.580533pt;}
.yfe{bottom:561.581867pt;}
.y130{bottom:561.583067pt;}
.ya{bottom:562.126141pt;}
.y20c{bottom:580.208933pt;}
.yee{bottom:580.215067pt;}
.ybe{bottom:580.221200pt;}
.y3f{bottom:580.227467pt;}
.y1de{bottom:580.233467pt;}
.y160{bottom:580.233600pt;}
.y14f{bottom:580.234800pt;}
.y27{bottom:580.239600pt;}
.yd8{bottom:580.239733pt;}
.y86{bottom:580.240933pt;}
.ya7{bottom:580.241067pt;}
.y217{bottom:580.243600pt;}
.y11f{bottom:580.247200pt;}
.y1bb{bottom:580.252000pt;}
.y9{bottom:585.967830pt;}
.y8{bottom:598.212611pt;}
.y20b{bottom:598.881733pt;}
.yed{bottom:598.887867pt;}
.ybd{bottom:598.894000pt;}
.y3e{bottom:598.900267pt;}
.y18d{bottom:598.901467pt;}
.yd7{bottom:598.902800pt;}
.y1dd{bottom:598.906267pt;}
.y11e{bottom:598.906400pt;}
.y14e{bottom:598.907600pt;}
.y1a1{bottom:598.908933pt;}
.y26{bottom:598.912400pt;}
.y1cb{bottom:598.912533pt;}
.y25{bottom:598.913200pt;}
.y85{bottom:598.913733pt;}
.ya6{bottom:598.913867pt;}
.y216{bottom:598.916400pt;}
.y223{bottom:598.918667pt;}
.y7{bottom:610.457392pt;}
.y215{bottom:617.548400pt;}
.y20a{bottom:617.554533pt;}
.yec{bottom:617.560667pt;}
.ybc{bottom:617.566800pt;}
.y1dc{bottom:617.569467pt;}
.y84{bottom:617.572933pt;}
.y3d{bottom:617.573067pt;}
.y18c{bottom:617.574267pt;}
.yd6{bottom:617.575600pt;}
.y19a{bottom:617.579200pt;}
.y1c1{bottom:617.580400pt;}
.y1a0{bottom:617.581733pt;}
.y24{bottom:617.585200pt;}
.y6{bottom:622.702173pt;}
.yd5{bottom:636.221200pt;}
.y19f{bottom:636.227333pt;}
.y1a8{bottom:636.228667pt;}
.yeb{bottom:636.233467pt;}
.y63{bottom:636.234800pt;}
.y10c{bottom:636.237467pt;}
.ybb{bottom:636.239600pt;}
.ya5{bottom:636.240933pt;}
.y3c{bottom:636.242267pt;}
.y200{bottom:636.242400pt;}
.y83{bottom:636.245733pt;}
.y15f{bottom:636.245867pt;}
.y1ba{bottom:636.247067pt;}
.y199{bottom:636.252000pt;}
.y1b6{bottom:654.889200pt;}
.yd4{bottom:654.894000pt;}
.y19e{bottom:654.900133pt;}
.y14d{bottom:654.901467pt;}
.y82{bottom:654.906267pt;}
.y62{bottom:654.907600pt;}
.y183{bottom:654.908933pt;}
.y10b{bottom:654.910267pt;}
.ya4{bottom:654.913733pt;}
.y3b{bottom:654.915067pt;}
.y1ff{bottom:654.915200pt;}
.y198{bottom:654.917867pt;}
.y15e{bottom:654.918667pt;}
.y197{bottom:673.536267pt;}
.y1db{bottom:673.560667pt;}
.y1fe{bottom:673.560800pt;}
.y12f{bottom:673.562000pt;}
.y61{bottom:673.566800pt;}
.yea{bottom:673.568133pt;}
.y81{bottom:673.569467pt;}
.ya3{bottom:673.572933pt;}
.y11d{bottom:673.574267pt;}
.y144{bottom:673.579067pt;}
.yba{bottom:673.580400pt;}
.y182{bottom:673.581733pt;}
.y10a{bottom:673.583067pt;}
.y3a{bottom:673.587867pt;}
.y22{bottom:674.958800pt;}
.y5{bottom:679.758100pt;}
.y196{bottom:692.209067pt;}
.y109{bottom:692.215067pt;}
.y181{bottom:692.227333pt;}
.y14c{bottom:692.233467pt;}
.y1fd{bottom:692.233600pt;}
.ya2{bottom:692.234800pt;}
.y209{bottom:692.236267pt;}
.y60{bottom:692.239600pt;}
.ye9{bottom:692.240933pt;}
.y80{bottom:692.242267pt;}
.y221{bottom:692.245733pt;}
.y11c{bottom:692.247067pt;}
.y143{bottom:692.251867pt;}
.y4{bottom:697.920112pt;}
.y21{bottom:704.294800pt;}
.y195{bottom:710.881867pt;}
.y108{bottom:710.887867pt;}
.yd3{bottom:710.894000pt;}
.y5f{bottom:710.895467pt;}
.y142{bottom:710.897333pt;}
.yb9{bottom:710.900133pt;}
.y7f{bottom:710.901467pt;}
.y11b{bottom:710.906267pt;}
.y1fc{bottom:710.906400pt;}
.ya1{bottom:710.907600pt;}
.y208{bottom:710.909067pt;}
.y16a{bottom:710.912400pt;}
.y18b{bottom:710.913733pt;}
.y220{bottom:710.918533pt;}
.y39{bottom:710.919867pt;}
.y3{bottom:719.343079pt;}
.y194{bottom:729.554667pt;}
.y107{bottom:729.560667pt;}
.yd2{bottom:729.566800pt;}
.y5e{bottom:729.568267pt;}
.y141{bottom:729.570133pt;}
.yb8{bottom:729.572933pt;}
.y7e{bottom:729.574267pt;}
.y1da{bottom:729.579067pt;}
.y1fb{bottom:729.579200pt;}
.ya0{bottom:729.580400pt;}
.y207{bottom:729.581867pt;}
.y169{bottom:729.585200pt;}
.y20{bottom:733.630800pt;}
.y2{bottom:740.776845pt;}
.y193{bottom:748.227467pt;}
.yb7{bottom:748.233467pt;}
.y9f{bottom:748.239600pt;}
.y5d{bottom:748.241067pt;}
.y140{bottom:748.242933pt;}
.y7d{bottom:748.247067pt;}
.y38{bottom:748.251867pt;}
.y1fa{bottom:748.252000pt;}
.y1f{bottom:762.966800pt;}
.y9e{bottom:766.891200pt;}
.y178{bottom:766.896000pt;}
.y5c{bottom:766.900267pt;}
.y13f{bottom:766.902133pt;}
.yb6{bottom:766.906267pt;}
.y214{bottom:766.909600pt;}
.yd1{bottom:766.912400pt;}
.y7c{bottom:766.913867pt;}
.y18a{bottom:766.915733pt;}
.y37{bottom:766.918667pt;}
.y9d{bottom:785.564000pt;}
.y177{bottom:785.568800pt;}
.y1d9{bottom:785.572933pt;}
.y5b{bottom:785.573067pt;}
.y13e{bottom:785.574933pt;}
.y213{bottom:785.582400pt;}
.yd0{bottom:785.585200pt;}
.y36{bottom:785.585333pt;}
.y9c{bottom:804.236800pt;}
.y1f9{bottom:804.241467pt;}
.y176{bottom:804.241600pt;}
.yfd{bottom:804.242933pt;}
.y1d8{bottom:804.245733pt;}
.y5a{bottom:804.245867pt;}
.ycf{bottom:804.246667pt;}
.y13d{bottom:804.247733pt;}
.y35{bottom:804.252000pt;}
.y189{bottom:822.896000pt;}
.y175{bottom:822.904800pt;}
.y1c0{bottom:822.908267pt;}
.y9b{bottom:822.909600pt;}
.y1f8{bottom:822.914267pt;}
.y1b5{bottom:822.914400pt;}
.yfc{bottom:822.915733pt;}
.y1d7{bottom:822.918533pt;}
.y23{bottom:822.918667pt;}
.y59{bottom:822.927200pt;}
.h7{height:22.403414pt;}
.h6{height:25.603901pt;}
.h9{height:28.804389pt;}
.h25{height:31.957333pt;}
.h5{height:32.004877pt;}
.hd{height:34.240000pt;}
.h4{height:35.205364pt;}
.h8{height:35.845462pt;}
.hc{height:36.520000pt;}
.h24{height:37.056000pt;}
.h10{height:38.406400pt;}
.h17{height:41.996800pt;}
.h2c{height:43.520000pt;}
.h28{height:43.574400pt;}
.hf{height:44.208000pt;}
.h3{height:44.806828pt;}
.h11{height:45.260800pt;}
.h13{height:45.280000pt;}
.h12{height:45.315200pt;}
.h14{height:45.334400pt;}
.h16{height:45.587200pt;}
.h22{height:45.590400pt;}
.h29{height:45.590933pt;}
.h26{height:45.596267pt;}
.h2e{height:45.598400pt;}
.h27{height:45.601067pt;}
.h18{height:45.601600pt;}
.h31{height:45.603733pt;}
.h33{height:45.604800pt;}
.h2f{height:45.605867pt;}
.h1a{height:45.606400pt;}
.h23{height:45.606933pt;}
.h20{height:45.611200pt;}
.h1e{height:45.611733pt;}
.h34{height:45.625600pt;}
.h32{height:45.630933pt;}
.h21{height:45.636267pt;}
.h1b{height:45.641600pt;}
.h2a{height:45.650133pt;}
.h2d{height:45.652800pt;}
.h1c{height:45.654933pt;}
.h1f{height:45.655467pt;}
.h30{height:45.656000pt;}
.h35{height:45.660267pt;}
.h19{height:45.660800pt;}
.h2b{height:45.661333pt;}
.h1d{height:45.696000pt;}
.h15{height:54.536533pt;}
.he{height:93.834667pt;}
.ha{height:907.301333pt;}
.hb{height:907.333333pt;}
.h2{height:909.061597pt;}
.h1{height:909.333333pt;}
.h0{height:909.600000pt;}
.w1{width:642.666667pt;}
.w2{width:642.772533pt;}
.w0{width:642.773333pt;}
.x0{left:0.000000pt;}
.x3{left:33.667748pt;}
.x5{left:38.381200pt;}
.x1{left:39.790139pt;}
.x6{left:74.367867pt;}
.x11{left:75.312800pt;}
.xb{left:82.614133pt;}
.x1a{left:86.393733pt;}
.x14{left:90.173200pt;}
.xd{left:92.204267pt;}
.x18{left:93.952667pt;}
.xe{left:97.125867pt;}
.x2{left:107.125635pt;}
.x16{left:214.891200pt;}
.x7{left:242.614133pt;}
.x4{left:315.265313pt;}
.xf{left:326.394491pt;}
.xc{left:333.955733pt;}
.x17{left:337.736000pt;}
.x10{left:341.511733pt;}
.x19{left:345.294267pt;}
.x12{left:349.075867pt;}
.xa{left:390.148200pt;}
.x9{left:522.044400pt;}
.x15{left:593.805333pt;}
.x13{left:595.824933pt;}
.x8{left:597.742667pt;}
}




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