
    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_ccbb1825fbe5ac230c247216.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1ffb292b3dc0d525ed7cc6e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009766;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_6d7f3caa953dfaaadd3464b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_4781b67ddf3d232de862a3af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_8c854f28c20b998e75fe32d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_951a89d2098528eb6b7000a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009766;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_dbaca491e973089b0b67bb48.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_1dc2cea23801f72cf44c7cd4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.956000px;}
.lsa{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.422000px;}
.ls1e{letter-spacing:-0.990000px;}
.ls22{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.942000px;}
.ls21{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls17{letter-spacing:-0.466800px;}
.lse{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.250800px;}
.ls1f{letter-spacing:-0.234600px;}
.ls20{letter-spacing:-0.020160px;}
.ls19{letter-spacing:-0.015840px;}
.lsf{letter-spacing:-0.015600px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.015600px;}
.ls2{letter-spacing:0.015840px;}
.ls3{letter-spacing:0.020160px;}
.ls26{letter-spacing:0.032160px;}
.ls23{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.234600px;}
.ls10{letter-spacing:0.250800px;}
.ls2b{letter-spacing:0.466800px;}
.ls1d{letter-spacing:0.486600px;}
.ls14{letter-spacing:0.486720px;}
.ls18{letter-spacing:0.507000px;}
.ls8{letter-spacing:0.630000px;}
.ls12{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.840000px;}
.ls1{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.188000px;}
.ls1b{letter-spacing:7.920000px;}
.ls16{letter-spacing:9.106560px;}
.ls28{letter-spacing:11.269440px;}
.ls1c{letter-spacing:13.426560px;}
.ls24{letter-spacing:20.880000px;}
.ls13{letter-spacing:23.940000px;}
.ls27{letter-spacing:35.749440px;}
.ls25{letter-spacing:40.786560px;}
.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;}
}
.ws18{word-spacing:-60.480000px;}
.ws6{word-spacing:-29.880000px;}
.ws17{word-spacing:-18.000000px;}
.ws10{word-spacing:-15.627000px;}
.ws16{word-spacing:-15.606600px;}
.ws1a{word-spacing:-15.586800px;}
.ws15{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws14{word-spacing:-15.099840px;}
.wsf{word-spacing:-14.653200px;}
.wse{word-spacing:-14.633400px;}
.ws3{word-spacing:-14.310000px;}
.ws1{word-spacing:-13.680000px;}
.ws2{word-spacing:-12.870000px;}
.ws7{word-spacing:-12.600000px;}
.wsd{word-spacing:-12.545280px;}
.wsa{word-spacing:-12.130800px;}
.ws11{word-spacing:-12.114600px;}
.ws8{word-spacing:-11.895600px;}
.ws0{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.864400px;}
.ws12{word-spacing:-11.864160px;}
.ws13{word-spacing:-11.645400px;}
.ws19{word-spacing:-11.629200px;}
.wsb{word-spacing:-11.160000px;}
.wsc{word-spacing:0.000000px;}
.ws4{word-spacing:2.413080px;}
._0{margin-left:-2.056199px;}
._1{margin-left:-1.028402px;}
._2{width:1.390798px;}
._2e{width:2.401452px;}
._8{width:3.410436px;}
._9{width:5.152011px;}
._13{width:6.984886px;}
._12{width:8.770471px;}
._22{width:9.857998px;}
._3{width:10.953262px;}
._4{width:12.381698px;}
._23{width:13.547520px;}
._e{width:14.971757px;}
._f{width:16.800743px;}
._1c{width:18.031164px;}
._6{width:19.181268px;}
._7{width:20.485366px;}
._5{width:21.772812px;}
._a{width:23.111910px;}
._1d{width:24.675598px;}
._b{width:26.654763px;}
._c{width:27.763723px;}
._d{width:29.132987px;}
._17{width:30.265002px;}
._16{width:31.557833px;}
._11{width:32.764162px;}
._10{width:34.231833px;}
._14{width:36.123708px;}
._15{width:37.191457px;}
._1e{width:38.344199px;}
._26{width:40.098119px;}
._27{width:41.872594px;}
._20{width:43.545600px;}
._1f{width:44.815801px;}
._21{width:46.146603px;}
._29{width:48.081600px;}
._2a{width:49.412039px;}
._24{width:50.621639px;}
._25{width:51.710279px;}
._28{width:61.145280px;}
._2c{width:72.697202px;}
._2b{width:75.055559px;}
._1a{width:85.661566px;}
._19{width:86.762888px;}
._18{width:94.980142px;}
._1b{width:99.220791px;}
._2d{width:100.661760px;}
._2f{width:102.375844px;}
.fc4{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y7d{bottom:-2.520000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.ye1{bottom:2.550000px;}
.yc6{bottom:2.880000px;}
.y5{bottom:3.240000px;}
.yf1{bottom:3.600000px;}
.yec{bottom:3.960000px;}
.yd9{bottom:4.320000px;}
.yf3{bottom:5.040000px;}
.ycd{bottom:5.760000px;}
.y10d{bottom:6.120000px;}
.yf6{bottom:6.480000px;}
.ya{bottom:6.516000px;}
.y119{bottom:7.920000px;}
.ydc{bottom:9.360000px;}
.ydf{bottom:9.390000px;}
.ye3{bottom:9.720000px;}
.y144{bottom:9.765000px;}
.yd4{bottom:10.080000px;}
.yef{bottom:10.440000px;}
.yea{bottom:10.800000px;}
.yda{bottom:11.160000px;}
.yd{bottom:11.520000px;}
.y6{bottom:12.996000px;}
.y116{bottom:14.040000px;}
.y7a{bottom:14.076000px;}
.y129{bottom:14.400000px;}
.y10a{bottom:14.790000px;}
.y11b{bottom:15.840000px;}
.yf5{bottom:15.870000px;}
.y7c{bottom:16.200000px;}
.ye0{bottom:16.230000px;}
.y8{bottom:16.560000px;}
.ye8{bottom:16.605000px;}
.yc5{bottom:16.920000px;}
.yf0{bottom:17.280000px;}
.yeb{bottom:17.640000px;}
.yd8{bottom:18.000000px;}
.y3{bottom:19.116000px;}
.y115{bottom:21.960000px;}
.y128{bottom:22.320000px;}
.y10c{bottom:22.710000px;}
.y122{bottom:23.760000px;}
.y118{bottom:24.120000px;}
.ycf{bottom:24.840000px;}
.yc{bottom:25.200000px;}
.yc9{bottom:27.360000px;}
.y7b{bottom:29.880000px;}
.y7{bottom:30.240000px;}
.y109{bottom:30.630000px;}
.y140{bottom:31.365000px;}
.y120{bottom:31.680000px;}
.y79{bottom:37.116000px;}
.y150{bottom:38.205000px;}
.yb{bottom:38.880000px;}
.y124{bottom:43.560000px;}
.y10f{bottom:49.320000px;}
.y1b0{bottom:85.356000px;}
.yfe{bottom:91.836000px;}
.y18c{bottom:93.636000px;}
.yb4{bottom:94.356000px;}
.y1de{bottom:97.956000px;}
.y13b{bottom:99.756000px;}
.y1af{bottom:103.356000px;}
.y78{bottom:111.276000px;}
.yfd{bottom:111.636000px;}
.y18b{bottom:111.996000px;}
.y1dd{bottom:113.796000px;}
.yb3{bottom:114.156000px;}
.y1ae{bottom:121.716000px;}
.y46{bottom:122.796000px;}
.y13a{bottom:125.676000px;}
.y77{bottom:129.636000px;}
.y18a{bottom:129.996000px;}
.yfc{bottom:131.472000px;}
.yb2{bottom:133.992000px;}
.y45{bottom:136.872000px;}
.y1ad{bottom:139.752000px;}
.y139{bottom:145.512000px;}
.y76{bottom:147.672000px;}
.y189{bottom:148.032000px;}
.y44{bottom:150.555000px;}
.yfb{bottom:151.275000px;}
.yb1{bottom:153.795000px;}
.y1ac{bottom:157.755000px;}
.y1dc{bottom:161.355000px;}
.y138{bottom:165.315000px;}
.y75{bottom:165.675000px;}
.y188{bottom:166.395000px;}
.yfa{bottom:171.075000px;}
.yb0{bottom:173.595000px;}
.y1ab{bottom:176.115000px;}
.y1db{bottom:177.195000px;}
.y43{bottom:178.275000px;}
.y163{bottom:180.075000px;}
.y74{bottom:184.035000px;}
.y187{bottom:184.395000px;}
.y137{bottom:185.115000px;}
.yf9{bottom:190.875000px;}
.y42{bottom:191.955000px;}
.y1da{bottom:193.035000px;}
.yaf{bottom:193.395000px;}
.y162{bottom:197.355000px;}
.y73{bottom:202.035000px;}
.y186{bottom:202.395000px;}
.y136{bottom:204.915000px;}
.y41{bottom:205.635000px;}
.y214{bottom:207.795000px;}
.y1d9{bottom:208.875000px;}
.yf8{bottom:212.835000px;}
.yae{bottom:213.195000px;}
.y161{bottom:218.235000px;}
.y40{bottom:219.675000px;}
.y72{bottom:220.035000px;}
.y185{bottom:220.755000px;}
.y213{bottom:223.635000px;}
.y135{bottom:224.715000px;}
.yf7{bottom:230.115000px;}
.yad{bottom:232.995000px;}
.y3f{bottom:233.355000px;}
.y71{bottom:238.395000px;}
.y184{bottom:238.755000px;}
.y212{bottom:239.475000px;}
.y1d8{bottom:240.555000px;}
.y134{bottom:244.515000px;}
.y3e{bottom:247.755000px;}
.yac{bottom:253.155000px;}
.yf4{bottom:253.875000px;}
.y211{bottom:255.315000px;}
.y70{bottom:256.395000px;}
.y183{bottom:256.755000px;}
.y3d{bottom:264.315000px;}
.y210{bottom:271.185000px;}
.y1d7{bottom:272.265000px;}
.yab{bottom:272.985000px;}
.y6f{bottom:274.425000px;}
.y182{bottom:274.785000px;}
.yf2{bottom:275.865000px;}
.y3c{bottom:278.385000px;}
.y133{bottom:284.505000px;}
.y20f{bottom:287.025000px;}
.y1d6{bottom:288.105000px;}
.y3b{bottom:292.065000px;}
.y6e{bottom:292.425000px;}
.yaa{bottom:292.785000px;}
.y181{bottom:293.145000px;}
.yee{bottom:294.945000px;}
.y20e{bottom:302.865000px;}
.y132{bottom:304.305000px;}
.y3a{bottom:306.105000px;}
.y6d{bottom:310.785000px;}
.y180{bottom:311.145000px;}
.ya9{bottom:312.585000px;}
.y20d{bottom:318.705000px;}
.y1d5{bottom:320.145000px;}
.y39{bottom:321.585000px;}
.y131{bottom:324.105000px;}
.y6c{bottom:328.785000px;}
.y17f{bottom:329.145000px;}
.yed{bottom:334.185000px;}
.y20c{bottom:334.905000px;}
.y1d4{bottom:335.985000px;}
.y38{bottom:337.065000px;}
.ya8{bottom:338.865000px;}
.y130{bottom:343.905000px;}
.y6b{bottom:346.785000px;}
.y1aa{bottom:347.145000px;}
.y17e{bottom:347.505000px;}
.y20b{bottom:350.745000px;}
.y1d3{bottom:351.825000px;}
.y37{bottom:352.545000px;}
.ye9{bottom:355.065000px;}
.y12f{bottom:363.705000px;}
.y6a{bottom:365.145000px;}
.y17d{bottom:365.505000px;}
.y20a{bottom:366.585000px;}
.y1d2{bottom:367.665000px;}
.y36{bottom:368.025000px;}
.ya7{bottom:376.665000px;}
.y209{bottom:382.425000px;}
.y69{bottom:383.145000px;}
.y12e{bottom:383.505000px;}
.ye7{bottom:386.025000px;}
.ya6{bottom:396.465000px;}
.y208{bottom:398.265000px;}
.y1d1{bottom:399.390000px;}
.y68{bottom:401.190000px;}
.y1a9{bottom:401.550000px;}
.y17c{bottom:401.910000px;}
.y12d{bottom:403.350000px;}
.y207{bottom:414.150000px;}
.y35{bottom:414.870000px;}
.y1d0{bottom:415.230000px;}
.ya5{bottom:416.310000px;}
.y67{bottom:419.550000px;}
.y17b{bottom:420.630000px;}
.y12c{bottom:423.150000px;}
.ye6{bottom:423.510000px;}
.y206{bottom:429.990000px;}
.y1cf{bottom:431.070000px;}
.ya4{bottom:436.110000px;}
.y34{bottom:437.190000px;}
.y66{bottom:437.550000px;}
.y17a{bottom:441.510000px;}
.ye5{bottom:444.750000px;}
.y12b{bottom:445.110000px;}
.y205{bottom:445.830000px;}
.y1ce{bottom:446.910000px;}
.y65{bottom:455.550000px;}
.ya3{bottom:455.910000px;}
.y179{bottom:459.870000px;}
.y204{bottom:461.670000px;}
.y12a{bottom:462.390000px;}
.y1cd{bottom:462.750000px;}
.ye4{bottom:472.830000px;}
.y64{bottom:473.910000px;}
.ya2{bottom:475.710000px;}
.y33{bottom:477.510000px;}
.y178{bottom:477.870000px;}
.y1cc{bottom:478.590000px;}
.y123{bottom:486.150000px;}
.y63{bottom:491.910000px;}
.y203{bottom:493.350000px;}
.y1cb{bottom:494.790000px;}
.ya1{bottom:495.510000px;}
.y177{bottom:495.870000px;}
.ye2{bottom:501.270000px;}
.y127{bottom:505.590000px;}
.y160{bottom:507.750000px;}
.y202{bottom:509.190000px;}
.y62{bottom:509.910000px;}
.y1a8{bottom:510.270000px;}
.y1ca{bottom:510.630000px;}
.y32{bottom:512.430000px;}
.y176{bottom:514.230000px;}
.ya0{bottom:515.670000px;}
.y201{bottom:525.390000px;}
.y15f{bottom:526.110000px;}
.y1c9{bottom:526.470000px;}
.y31{bottom:527.910000px;}
.y1a7{bottom:528.270000px;}
.yde{bottom:529.710000px;}
.y175{bottom:532.260000px;}
.y9f{bottom:535.500000px;}
.y21d{bottom:538.020000px;}
.y126{bottom:541.260000px;}
.y1c8{bottom:542.340000px;}
.y30{bottom:543.420000px;}
.y61{bottom:546.300000px;}
.y174{bottom:550.260000px;}
.y9e{bottom:555.300000px;}
.y200{bottom:557.100000px;}
.y1c7{bottom:558.180000px;}
.y2f{bottom:558.900000px;}
.y125{bottom:560.700000px;}
.y60{bottom:564.300000px;}
.y15e{bottom:566.100000px;}
.ydd{bottom:567.180000px;}
.y173{bottom:568.260000px;}
.y21c{bottom:571.140000px;}
.y1ff{bottom:572.940000px;}
.y1c6{bottom:574.020000px;}
.y2e{bottom:574.380000px;}
.y9d{bottom:575.100000px;}
.y11f{bottom:580.500000px;}
.y5f{bottom:582.300000px;}
.y1a6{bottom:582.660000px;}
.y15d{bottom:585.900000px;}
.y172{bottom:586.620000px;}
.ydb{bottom:588.060000px;}
.y1fe{bottom:588.780000px;}
.y2d{bottom:589.860000px;}
.y9c{bottom:594.900000px;}
.y5e{bottom:600.660000px;}
.y1a5{bottom:601.380000px;}
.y21b{bottom:603.540000px;}
.y171{bottom:604.620000px;}
.y2c{bottom:605.340000px;}
.y15c{bottom:605.700000px;}
.y9b{bottom:614.700000px;}
.y121{bottom:615.780000px;}
.yd7{bottom:616.500000px;}
.y5d{bottom:618.660000px;}
.y1fd{bottom:620.460000px;}
.y2b{bottom:621.180000px;}
.y1a4{bottom:622.260000px;}
.y170{bottom:622.620000px;}
.y15b{bottom:625.500000px;}
.y1c5{bottom:629.100000px;}
.y9a{bottom:634.500000px;}
.y11e{bottom:635.580000px;}
.y1fc{bottom:636.300000px;}
.y2a{bottom:636.660000px;}
.y21a{bottom:639.540000px;}
.y1a3{bottom:640.620000px;}
.y16f{bottom:640.980000px;}
.y15a{bottom:645.300000px;}
.y29{bottom:652.140000px;}
.y99{bottom:654.300000px;}
.y5c{bottom:655.020000px;}
.y219{bottom:656.820000px;}
.yd6{bottom:657.180000px;}
.y1a2{bottom:658.620000px;}
.y16e{bottom:658.980000px;}
.y159{bottom:665.100000px;}
.y1fb{bottom:668.010000px;}
.y5b{bottom:673.050000px;}
.y28{bottom:673.770000px;}
.y98{bottom:674.130000px;}
.y11c{bottom:674.850000px;}
.y1a1{bottom:676.650000px;}
.y16d{bottom:677.010000px;}
.yd3{bottom:678.090000px;}
.y1c4{bottom:683.490000px;}
.y1fa{bottom:683.850000px;}
.y158{bottom:684.930000px;}
.y5a{bottom:691.050000px;}
.y218{bottom:691.410000px;}
.yd5{bottom:692.850000px;}
.y97{bottom:693.930000px;}
.y11d{bottom:694.290000px;}
.y27{bottom:695.010000px;}
.y16c{bottom:695.370000px;}
.y1f9{bottom:699.690000px;}
.y1c3{bottom:701.490000px;}
.y157{bottom:704.730000px;}
.yce{bottom:707.250000px;}
.y217{bottom:708.690000px;}
.y59{bottom:709.410000px;}
.y26{bottom:710.850000px;}
.y1a0{bottom:713.010000px;}
.y16b{bottom:713.370000px;}
.y117{bottom:714.090000px;}
.y1f8{bottom:715.530000px;}
.y1c2{bottom:719.490000px;}
.y96{bottom:720.210000px;}
.yd2{bottom:722.370000px;}
.y156{bottom:724.530000px;}
.y216{bottom:725.970000px;}
.y25{bottom:726.330000px;}
.y58{bottom:727.410000px;}
.y19f{bottom:731.010000px;}
.y16a{bottom:731.370000px;}
.y1f7{bottom:731.730000px;}
.y11a{bottom:733.530000px;}
.yd1{bottom:736.770000px;}
.y1c1{bottom:737.850000px;}
.y24{bottom:741.810000px;}
.y215{bottom:743.250000px;}
.y57{bottom:745.410000px;}
.y155{bottom:746.490000px;}
.y1f6{bottom:747.570000px;}
.y19e{bottom:749.370000px;}
.y169{bottom:749.730000px;}
.yd0{bottom:751.530000px;}
.y113{bottom:753.330000px;}
.y1c0{bottom:755.850000px;}
.y95{bottom:756.570000px;}
.y23{bottom:757.290000px;}
.y56{bottom:763.410000px;}
.y154{bottom:763.770000px;}
.yc8{bottom:765.930000px;}
.y19d{bottom:767.370000px;}
.y168{bottom:767.730000px;}
.y22{bottom:772.770000px;}
.y1bf{bottom:773.850000px;}
.y94{bottom:774.570000px;}
.y1f5{bottom:779.250000px;}
.y55{bottom:781.770000px;}
.y19c{bottom:785.370000px;}
.y167{bottom:785.730000px;}
.ycc{bottom:786.450000px;}
.y153{bottom:787.170000px;}
.y21{bottom:788.250000px;}
.y114{bottom:788.610000px;}
.y14f{bottom:789.330000px;}
.y1be{bottom:791.850000px;}
.y93{bottom:792.570000px;}
.y1f4{bottom:795.090000px;}
.y54{bottom:799.815000px;}
.ycb{bottom:800.895000px;}
.y20{bottom:803.775000px;}
.y1bd{bottom:810.255000px;}
.y92{bottom:810.975000px;}
.y10e{bottom:814.935000px;}
.yca{bottom:815.655000px;}
.y53{bottom:817.815000px;}
.y1f{bottom:819.255000px;}
.y19b{bottom:821.775000px;}
.y1f3{bottom:826.815000px;}
.y1bc{bottom:828.255000px;}
.y91{bottom:828.975000px;}
.yc4{bottom:830.055000px;}
.y166{bottom:830.415000px;}
.y1e{bottom:835.095000px;}
.y52{bottom:836.175000px;}
.y19a{bottom:839.775000px;}
.y112{bottom:841.215000px;}
.y1f2{bottom:842.655000px;}
.yc7{bottom:844.815000px;}
.y152{bottom:845.895000px;}
.y1bb{bottom:846.255000px;}
.y90{bottom:846.975000px;}
.y1d{bottom:850.575000px;}
.y51{bottom:854.175000px;}
.y199{bottom:857.775000px;}
.y1f1{bottom:858.495000px;}
.yc3{bottom:859.215000px;}
.y151{bottom:860.655000px;}
.y1ba{bottom:864.615000px;}
.y8f{bottom:865.335000px;}
.y1c{bottom:866.055000px;}
.y111{bottom:867.495000px;}
.y50{bottom:872.175000px;}
.y1f0{bottom:874.335000px;}
.y14d{bottom:875.055000px;}
.y198{bottom:876.135000px;}
.y1b{bottom:881.535000px;}
.y165{bottom:882.615000px;}
.yc2{bottom:882.975000px;}
.y8e{bottom:883.335000px;}
.y14e{bottom:889.815000px;}
.y1ef{bottom:890.175000px;}
.y4f{bottom:890.535000px;}
.y110{bottom:893.775000px;}
.y197{bottom:894.135000px;}
.y1a{bottom:897.015000px;}
.y1b9{bottom:900.615000px;}
.y8d{bottom:901.335000px;}
.y164{bottom:903.495000px;}
.y14b{bottom:904.215000px;}
.y1ee{bottom:906.015000px;}
.y4e{bottom:908.535000px;}
.yc1{bottom:908.895000px;}
.y196{bottom:912.135000px;}
.y19{bottom:912.495000px;}
.y14c{bottom:918.615000px;}
.y1b8{bottom:918.975000px;}
.y8c{bottom:919.335000px;}
.y108{bottom:920.415000px;}
.y1ed{bottom:922.215000px;}
.y4d{bottom:926.535000px;}
.y18{bottom:927.975000px;}
.yc0{bottom:928.695000px;}
.y195{bottom:930.495000px;}
.y149{bottom:933.405000px;}
.y1b7{bottom:937.005000px;}
.y8b{bottom:937.725000px;}
.y1ec{bottom:938.085000px;}
.y17{bottom:943.485000px;}
.y4c{bottom:944.925000px;}
.y10b{bottom:946.365000px;}
.y14a{bottom:947.805000px;}
.ybf{bottom:948.525000px;}
.y1eb{bottom:953.925000px;}
.y1b6{bottom:955.005000px;}
.y8a{bottom:955.725000px;}
.y16{bottom:959.325000px;}
.y4b{bottom:962.925000px;}
.y194{bottom:967.245000px;}
.ybe{bottom:968.325000px;}
.y1ea{bottom:969.765000px;}
.y107{bottom:973.005000px;}
.y1b5{bottom:973.365000px;}
.y89{bottom:973.725000px;}
.y15{bottom:974.805000px;}
.y147{bottom:976.245000px;}
.y4a{bottom:980.925000px;}
.y1e9{bottom:985.605000px;}
.ybd{bottom:988.125000px;}
.y193{bottom:988.485000px;}
.y14{bottom:990.285000px;}
.y148{bottom:990.645000px;}
.y88{bottom:992.085000px;}
.y49{bottom:998.925000px;}
.y1b4{bottom:1000.725000px;}
.y1e8{bottom:1001.445000px;}
.y145{bottom:1005.405000px;}
.y13{bottom:1005.765000px;}
.y192{bottom:1006.485000px;}
.ybc{bottom:1007.925000px;}
.y106{bottom:1008.285000px;}
.y87{bottom:1010.085000px;}
.y48{bottom:1017.285000px;}
.y12{bottom:1021.245000px;}
.y191{bottom:1024.485000px;}
.ybb{bottom:1027.725000px;}
.y86{bottom:1028.085000px;}
.y1e7{bottom:1033.125000px;}
.y146{bottom:1033.845000px;}
.y105{bottom:1034.205000px;}
.y47{bottom:1035.285000px;}
.y11{bottom:1036.725000px;}
.y1b3{bottom:1037.085000px;}
.y190{bottom:1042.845000px;}
.y85{bottom:1046.445000px;}
.yba{bottom:1047.525000px;}
.y13f{bottom:1048.245000px;}
.y1e6{bottom:1048.965000px;}
.y104{bottom:1054.005000px;}
.y1b2{bottom:1055.085000px;}
.y18f{bottom:1060.845000px;}
.y143{bottom:1062.645000px;}
.y84{bottom:1064.445000px;}
.y1e5{bottom:1064.805000px;}
.yb9{bottom:1067.370000px;}
.y10{bottom:1070.970000px;}
.y1b1{bottom:1073.130000px;}
.y103{bottom:1073.850000px;}
.y18e{bottom:1078.890000px;}
.y1e4{bottom:1080.690000px;}
.y83{bottom:1082.490000px;}
.yb8{bottom:1087.530000px;}
.y142{bottom:1091.130000px;}
.y102{bottom:1093.650000px;}
.y1e3{bottom:1096.530000px;}
.y18d{bottom:1097.970000px;}
.y82{bottom:1100.850000px;}
.y141{bottom:1105.890000px;}
.yb7{bottom:1107.330000px;}
.yf{bottom:1112.370000px;}
.y101{bottom:1113.450000px;}
.y81{bottom:1118.850000px;}
.y13d{bottom:1120.290000px;}
.yb6{bottom:1127.130000px;}
.y1e2{bottom:1128.570000px;}
.y100{bottom:1133.610000px;}
.y13e{bottom:1134.690000px;}
.y80{bottom:1136.850000px;}
.y1e1{bottom:1144.410000px;}
.yb5{bottom:1146.930000px;}
.y13c{bottom:1149.450000px;}
.yff{bottom:1153.410000px;}
.ye{bottom:1153.770000px;}
.y7f{bottom:1154.850000px;}
.y1e0{bottom:1160.250000px;}
.y7e{bottom:1173.210000px;}
.y1df{bottom:1176.090000px;}
.y2{bottom:1217.520000px;}
.y4{bottom:1231.560000px;}
.y1{bottom:1234.800000px;}
.h3a{height:4.573125px;}
.h12{height:13.680000px;}
.h17{height:13.716000px;}
.h16{height:14.040000px;}
.h1a{height:14.400000px;}
.h4{height:17.280000px;}
.h22{height:18.360000px;}
.h31{height:18.720000px;}
.h30{height:19.080000px;}
.h33{height:19.116000px;}
.h18{height:19.800000px;}
.h24{height:21.276000px;}
.h2a{height:25.236000px;}
.h26{height:25.560000px;}
.h2d{height:25.596000px;}
.h29{height:25.920000px;}
.h1e{height:27.360000px;}
.h1d{height:27.396000px;}
.h1c{height:27.720000px;}
.h1f{height:27.756000px;}
.h14{height:28.440000px;}
.h21{height:29.160000px;}
.h20{height:30.240000px;}
.h1b{height:30.960000px;}
.h13{height:33.528516px;}
.h2e{height:34.560000px;}
.h36{height:34.956000px;}
.h6{height:36.150469px;}
.he{height:37.728281px;}
.h2f{height:38.520000px;}
.h32{height:38.556000px;}
.h27{height:38.563594px;}
.hd{height:38.608594px;}
.h23{height:40.356000px;}
.h10{height:41.040000px;}
.h5{height:41.400000px;}
.h38{height:42.120000px;}
.h2{height:42.672656px;}
.hb{height:43.444688px;}
.h25{height:44.031094px;}
.ha{height:44.406562px;}
.h3b{height:44.798906px;}
.h3{height:48.017813px;}
.h11{height:49.080938px;}
.h7{height:50.040000px;}
.h28{height:51.876000px;}
.h9{height:53.755312px;}
.h34{height:54.360000px;}
.hf{height:57.164062px;}
.h19{height:57.960000px;}
.h2c{height:60.876000px;}
.h15{height:63.396000px;}
.h3c{height:65.884219px;}
.h37{height:71.316000px;}
.h39{height:84.996000px;}
.h35{height:93.636000px;}
.hc{height:94.892344px;}
.h2b{height:104.400000px;}
.h8{height:114.328125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:6.840000px;}
.wd{width:54.000000px;}
.w1d{width:57.636000px;}
.w16{width:59.436000px;}
.we{width:60.516000px;}
.wc{width:60.876000px;}
.w13{width:61.956000px;}
.w17{width:62.676000px;}
.w14{width:64.116000px;}
.wf{width:69.516000px;}
.w24{width:70.236000px;}
.w1e{width:72.396000px;}
.w15{width:73.800000px;}
.w22{width:77.076000px;}
.w1f{width:88.236000px;}
.w1a{width:90.036000px;}
.w23{width:91.116000px;}
.wb{width:91.476000px;}
.wa{width:95.076000px;}
.w11{width:100.116000px;}
.w9{width:102.636000px;}
.w18{width:105.516000px;}
.w21{width:108.036000px;}
.w10{width:110.196000px;}
.w1c{width:111.276000px;}
.w12{width:117.792000px;}
.w19{width:127.152000px;}
.w8{width:138.672000px;}
.w1b{width:161.355000px;}
.w20{width:162.075000px;}
.w3{width:193.395000px;}
.w6{width:193.425000px;}
.w7{width:198.435000px;}
.w4{width:263.265000px;}
.w1{width:892.500000px;}
.w5{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x27{left:7.560000px;}
.x3e{left:8.640000px;}
.x3b{left:9.720000px;}
.x6{left:10.800000px;}
.x2c{left:12.240000px;}
.x44{left:14.040000px;}
.x3d{left:15.120000px;}
.x29{left:16.200000px;}
.x50{left:17.280000px;}
.x19{left:18.360000px;}
.x26{left:20.160000px;}
.x22{left:21.240000px;}
.x36{left:23.085000px;}
.x25{left:24.120000px;}
.x3f{left:25.920000px;}
.x37{left:27.405000px;}
.x2f{left:29.160000px;}
.x40{left:30.960000px;}
.x35{left:32.070000px;}
.x18{left:35.310000px;}
.x1c{left:36.405000px;}
.x49{left:37.800000px;}
.x1d{left:38.910000px;}
.x21{left:40.365000px;}
.x45{left:41.400000px;}
.x20{left:42.525000px;}
.x34{left:43.950000px;}
.x1f{left:45.045000px;}
.x24{left:46.470000px;}
.x1e{left:47.910000px;}
.x1a{left:51.150000px;}
.x23{left:52.590000px;}
.x16{left:62.310000px;}
.x7{left:70.956000px;}
.x54{left:76.715987px;}
.xb{left:81.036000px;}
.x8{left:87.156000px;}
.x5b{left:91.475987px;}
.x5a{left:102.275987px;}
.x5d{left:123.515987px;}
.x12{left:131.795987px;}
.x13{left:139.391987px;}
.x59{left:147.671987px;}
.x48{left:160.275000px;}
.x58{left:162.794987px;}
.xc{left:181.155000px;}
.x55{left:183.314987px;}
.x56{left:190.514987px;}
.xa{left:191.595000px;}
.x10{left:205.274987px;}
.x46{left:249.225000px;}
.x4a{left:252.824987px;}
.x9{left:263.985000px;}
.x1{left:278.025000px;}
.x47{left:361.230000px;}
.x53{left:430.739987px;}
.x5c{left:435.779987px;}
.x3{left:439.020000px;}
.x2{left:442.980000px;}
.xf{left:446.579987px;}
.xd{left:457.380000px;}
.x4c{left:466.020000px;}
.xe{left:468.180000px;}
.x15{left:471.420000px;}
.x31{left:475.380000px;}
.x39{left:477.900000px;}
.x5{left:478.980000px;}
.x4b{left:480.419987px;}
.x11{left:505.260000px;}
.x41{left:525.089987px;}
.x30{left:530.489987px;}
.x28{left:539.489987px;}
.x3a{left:540.570000px;}
.x4f{left:557.850000px;}
.x52{left:559.289987px;}
.x2a{left:562.890000px;}
.x57{left:566.849987px;}
.x1b{left:574.770000px;}
.x14{left:583.409987px;}
.x42{left:584.490000px;}
.x38{left:585.569987px;}
.x32{left:586.650000px;}
.x3c{left:605.415000px;}
.x2b{left:624.495000px;}
.x4d{left:628.815000px;}
.x17{left:670.575000px;}
.x2d{left:679.215000px;}
.x33{left:687.495000px;}
.x43{left:712.365000px;}
.x4e{left:737.565000px;}
.x2e{left:740.445000px;}
.x4{left:816.090000px;}
.x51{left:820.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.738667pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.264000pt;}
.ls1e{letter-spacing:-0.880000pt;}
.ls22{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.837333pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls17{letter-spacing:-0.414933pt;}
.lse{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.222933pt;}
.ls1f{letter-spacing:-0.208533pt;}
.ls20{letter-spacing:-0.017920pt;}
.ls19{letter-spacing:-0.014080pt;}
.lsf{letter-spacing:-0.013867pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.013867pt;}
.ls2{letter-spacing:0.014080pt;}
.ls3{letter-spacing:0.017920pt;}
.ls26{letter-spacing:0.028587pt;}
.ls23{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.208533pt;}
.ls10{letter-spacing:0.222933pt;}
.ls2b{letter-spacing:0.414933pt;}
.ls1d{letter-spacing:0.432533pt;}
.ls14{letter-spacing:0.432640pt;}
.ls18{letter-spacing:0.450667pt;}
.ls8{letter-spacing:0.560000pt;}
.ls12{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.056000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls16{letter-spacing:8.094720pt;}
.ls28{letter-spacing:10.017280pt;}
.ls1c{letter-spacing:11.934720pt;}
.ls24{letter-spacing:18.560000pt;}
.ls13{letter-spacing:21.280000pt;}
.ls27{letter-spacing:31.777280pt;}
.ls25{letter-spacing:36.254720pt;}
.ws18{word-spacing:-53.760000pt;}
.ws6{word-spacing:-26.560000pt;}
.ws17{word-spacing:-16.000000pt;}
.ws10{word-spacing:-13.890667pt;}
.ws16{word-spacing:-13.872533pt;}
.ws1a{word-spacing:-13.854933pt;}
.ws15{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.422080pt;}
.wsf{word-spacing:-13.025067pt;}
.wse{word-spacing:-13.007467pt;}
.ws3{word-spacing:-12.720000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.440000pt;}
.ws7{word-spacing:-11.200000pt;}
.wsd{word-spacing:-11.151360pt;}
.wsa{word-spacing:-10.782933pt;}
.ws11{word-spacing:-10.768533pt;}
.ws8{word-spacing:-10.573867pt;}
.ws0{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.546133pt;}
.ws12{word-spacing:-10.545920pt;}
.ws13{word-spacing:-10.351467pt;}
.ws19{word-spacing:-10.337067pt;}
.wsb{word-spacing:-9.920000pt;}
.wsc{word-spacing:0.000000pt;}
.ws4{word-spacing:2.144960pt;}
._0{margin-left:-1.827732pt;}
._1{margin-left:-0.914135pt;}
._2{width:1.236265pt;}
._2e{width:2.134624pt;}
._8{width:3.031498pt;}
._9{width:4.579565pt;}
._13{width:6.208788pt;}
._12{width:7.795974pt;}
._22{width:8.762665pt;}
._3{width:9.736233pt;}
._4{width:11.005954pt;}
._23{width:12.042240pt;}
._e{width:13.308228pt;}
._f{width:14.933994pt;}
._1c{width:16.027702pt;}
._6{width:17.050016pt;}
._7{width:18.209214pt;}
._5{width:19.353610pt;}
._a{width:20.543920pt;}
._1d{width:21.933865pt;}
._b{width:23.693123pt;}
._c{width:24.678865pt;}
._d{width:25.895988pt;}
._17{width:26.902224pt;}
._16{width:28.051407pt;}
._11{width:29.123699pt;}
._10{width:30.428296pt;}
._14{width:32.109962pt;}
._15{width:33.059073pt;}
._1e{width:34.083732pt;}
._26{width:35.642772pt;}
._27{width:37.220083pt;}
._20{width:38.707200pt;}
._1f{width:39.836268pt;}
._21{width:41.019203pt;}
._29{width:42.739200pt;}
._2a{width:43.921812pt;}
._24{width:44.997012pt;}
._25{width:45.964692pt;}
._28{width:54.351360pt;}
._2c{width:64.619735pt;}
._2b{width:66.716052pt;}
._1a{width:76.143614pt;}
._19{width:77.122567pt;}
._18{width:84.426793pt;}
._1b{width:88.196259pt;}
._2d{width:89.477120pt;}
._2f{width:91.000750pt;}
.fs7{font-size:5.120000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y7d{bottom:-2.240000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.ye1{bottom:2.266667pt;}
.yc6{bottom:2.560000pt;}
.y5{bottom:2.880000pt;}
.yf1{bottom:3.200000pt;}
.yec{bottom:3.520000pt;}
.yd9{bottom:3.840000pt;}
.yf3{bottom:4.480000pt;}
.ycd{bottom:5.120000pt;}
.y10d{bottom:5.440000pt;}
.yf6{bottom:5.760000pt;}
.ya{bottom:5.792000pt;}
.y119{bottom:7.040000pt;}
.ydc{bottom:8.320000pt;}
.ydf{bottom:8.346667pt;}
.ye3{bottom:8.640000pt;}
.y144{bottom:8.680000pt;}
.yd4{bottom:8.960000pt;}
.yef{bottom:9.280000pt;}
.yea{bottom:9.600000pt;}
.yda{bottom:9.920000pt;}
.yd{bottom:10.240000pt;}
.y6{bottom:11.552000pt;}
.y116{bottom:12.480000pt;}
.y7a{bottom:12.512000pt;}
.y129{bottom:12.800000pt;}
.y10a{bottom:13.146667pt;}
.y11b{bottom:14.080000pt;}
.yf5{bottom:14.106667pt;}
.y7c{bottom:14.400000pt;}
.ye0{bottom:14.426667pt;}
.y8{bottom:14.720000pt;}
.ye8{bottom:14.760000pt;}
.yc5{bottom:15.040000pt;}
.yf0{bottom:15.360000pt;}
.yeb{bottom:15.680000pt;}
.yd8{bottom:16.000000pt;}
.y3{bottom:16.992000pt;}
.y115{bottom:19.520000pt;}
.y128{bottom:19.840000pt;}
.y10c{bottom:20.186667pt;}
.y122{bottom:21.120000pt;}
.y118{bottom:21.440000pt;}
.ycf{bottom:22.080000pt;}
.yc{bottom:22.400000pt;}
.yc9{bottom:24.320000pt;}
.y7b{bottom:26.560000pt;}
.y7{bottom:26.880000pt;}
.y109{bottom:27.226667pt;}
.y140{bottom:27.880000pt;}
.y120{bottom:28.160000pt;}
.y79{bottom:32.992000pt;}
.y150{bottom:33.960000pt;}
.yb{bottom:34.560000pt;}
.y124{bottom:38.720000pt;}
.y10f{bottom:43.840000pt;}
.y1b0{bottom:75.872000pt;}
.yfe{bottom:81.632000pt;}
.y18c{bottom:83.232000pt;}
.yb4{bottom:83.872000pt;}
.y1de{bottom:87.072000pt;}
.y13b{bottom:88.672000pt;}
.y1af{bottom:91.872000pt;}
.y78{bottom:98.912000pt;}
.yfd{bottom:99.232000pt;}
.y18b{bottom:99.552000pt;}
.y1dd{bottom:101.152000pt;}
.yb3{bottom:101.472000pt;}
.y1ae{bottom:108.192000pt;}
.y46{bottom:109.152000pt;}
.y13a{bottom:111.712000pt;}
.y77{bottom:115.232000pt;}
.y18a{bottom:115.552000pt;}
.yfc{bottom:116.864000pt;}
.yb2{bottom:119.104000pt;}
.y45{bottom:121.664000pt;}
.y1ad{bottom:124.224000pt;}
.y139{bottom:129.344000pt;}
.y76{bottom:131.264000pt;}
.y189{bottom:131.584000pt;}
.y44{bottom:133.826667pt;}
.yfb{bottom:134.466667pt;}
.yb1{bottom:136.706667pt;}
.y1ac{bottom:140.226667pt;}
.y1dc{bottom:143.426667pt;}
.y138{bottom:146.946667pt;}
.y75{bottom:147.266667pt;}
.y188{bottom:147.906667pt;}
.yfa{bottom:152.066667pt;}
.yb0{bottom:154.306667pt;}
.y1ab{bottom:156.546667pt;}
.y1db{bottom:157.506667pt;}
.y43{bottom:158.466667pt;}
.y163{bottom:160.066667pt;}
.y74{bottom:163.586667pt;}
.y187{bottom:163.906667pt;}
.y137{bottom:164.546667pt;}
.yf9{bottom:169.666667pt;}
.y42{bottom:170.626667pt;}
.y1da{bottom:171.586667pt;}
.yaf{bottom:171.906667pt;}
.y162{bottom:175.426667pt;}
.y73{bottom:179.586667pt;}
.y186{bottom:179.906667pt;}
.y136{bottom:182.146667pt;}
.y41{bottom:182.786667pt;}
.y214{bottom:184.706667pt;}
.y1d9{bottom:185.666667pt;}
.yf8{bottom:189.186667pt;}
.yae{bottom:189.506667pt;}
.y161{bottom:193.986667pt;}
.y40{bottom:195.266667pt;}
.y72{bottom:195.586667pt;}
.y185{bottom:196.226667pt;}
.y213{bottom:198.786667pt;}
.y135{bottom:199.746667pt;}
.yf7{bottom:204.546667pt;}
.yad{bottom:207.106667pt;}
.y3f{bottom:207.426667pt;}
.y71{bottom:211.906667pt;}
.y184{bottom:212.226667pt;}
.y212{bottom:212.866667pt;}
.y1d8{bottom:213.826667pt;}
.y134{bottom:217.346667pt;}
.y3e{bottom:220.226667pt;}
.yac{bottom:225.026667pt;}
.yf4{bottom:225.666667pt;}
.y211{bottom:226.946667pt;}
.y70{bottom:227.906667pt;}
.y183{bottom:228.226667pt;}
.y3d{bottom:234.946667pt;}
.y210{bottom:241.053333pt;}
.y1d7{bottom:242.013333pt;}
.yab{bottom:242.653333pt;}
.y6f{bottom:243.933333pt;}
.y182{bottom:244.253333pt;}
.yf2{bottom:245.213333pt;}
.y3c{bottom:247.453333pt;}
.y133{bottom:252.893333pt;}
.y20f{bottom:255.133333pt;}
.y1d6{bottom:256.093333pt;}
.y3b{bottom:259.613333pt;}
.y6e{bottom:259.933333pt;}
.yaa{bottom:260.253333pt;}
.y181{bottom:260.573333pt;}
.yee{bottom:262.173333pt;}
.y20e{bottom:269.213333pt;}
.y132{bottom:270.493333pt;}
.y3a{bottom:272.093333pt;}
.y6d{bottom:276.253333pt;}
.y180{bottom:276.573333pt;}
.ya9{bottom:277.853333pt;}
.y20d{bottom:283.293333pt;}
.y1d5{bottom:284.573333pt;}
.y39{bottom:285.853333pt;}
.y131{bottom:288.093333pt;}
.y6c{bottom:292.253333pt;}
.y17f{bottom:292.573333pt;}
.yed{bottom:297.053333pt;}
.y20c{bottom:297.693333pt;}
.y1d4{bottom:298.653333pt;}
.y38{bottom:299.613333pt;}
.ya8{bottom:301.213333pt;}
.y130{bottom:305.693333pt;}
.y6b{bottom:308.253333pt;}
.y1aa{bottom:308.573333pt;}
.y17e{bottom:308.893333pt;}
.y20b{bottom:311.773333pt;}
.y1d3{bottom:312.733333pt;}
.y37{bottom:313.373333pt;}
.ye9{bottom:315.613333pt;}
.y12f{bottom:323.293333pt;}
.y6a{bottom:324.573333pt;}
.y17d{bottom:324.893333pt;}
.y20a{bottom:325.853333pt;}
.y1d2{bottom:326.813333pt;}
.y36{bottom:327.133333pt;}
.ya7{bottom:334.813333pt;}
.y209{bottom:339.933333pt;}
.y69{bottom:340.573333pt;}
.y12e{bottom:340.893333pt;}
.ye7{bottom:343.133333pt;}
.ya6{bottom:352.413333pt;}
.y208{bottom:354.013333pt;}
.y1d1{bottom:355.013333pt;}
.y68{bottom:356.613333pt;}
.y1a9{bottom:356.933333pt;}
.y17c{bottom:357.253333pt;}
.y12d{bottom:358.533333pt;}
.y207{bottom:368.133333pt;}
.y35{bottom:368.773333pt;}
.y1d0{bottom:369.093333pt;}
.ya5{bottom:370.053333pt;}
.y67{bottom:372.933333pt;}
.y17b{bottom:373.893333pt;}
.y12c{bottom:376.133333pt;}
.ye6{bottom:376.453333pt;}
.y206{bottom:382.213333pt;}
.y1cf{bottom:383.173333pt;}
.ya4{bottom:387.653333pt;}
.y34{bottom:388.613333pt;}
.y66{bottom:388.933333pt;}
.y17a{bottom:392.453333pt;}
.ye5{bottom:395.333333pt;}
.y12b{bottom:395.653333pt;}
.y205{bottom:396.293333pt;}
.y1ce{bottom:397.253333pt;}
.y65{bottom:404.933333pt;}
.ya3{bottom:405.253333pt;}
.y179{bottom:408.773333pt;}
.y204{bottom:410.373333pt;}
.y12a{bottom:411.013333pt;}
.y1cd{bottom:411.333333pt;}
.ye4{bottom:420.293333pt;}
.y64{bottom:421.253333pt;}
.ya2{bottom:422.853333pt;}
.y33{bottom:424.453333pt;}
.y178{bottom:424.773333pt;}
.y1cc{bottom:425.413333pt;}
.y123{bottom:432.133333pt;}
.y63{bottom:437.253333pt;}
.y203{bottom:438.533333pt;}
.y1cb{bottom:439.813333pt;}
.ya1{bottom:440.453333pt;}
.y177{bottom:440.773333pt;}
.ye2{bottom:445.573333pt;}
.y127{bottom:449.413333pt;}
.y160{bottom:451.333333pt;}
.y202{bottom:452.613333pt;}
.y62{bottom:453.253333pt;}
.y1a8{bottom:453.573333pt;}
.y1ca{bottom:453.893333pt;}
.y32{bottom:455.493333pt;}
.y176{bottom:457.093333pt;}
.ya0{bottom:458.373333pt;}
.y201{bottom:467.013333pt;}
.y15f{bottom:467.653333pt;}
.y1c9{bottom:467.973333pt;}
.y31{bottom:469.253333pt;}
.y1a7{bottom:469.573333pt;}
.yde{bottom:470.853333pt;}
.y175{bottom:473.120000pt;}
.y9f{bottom:476.000000pt;}
.y21d{bottom:478.240000pt;}
.y126{bottom:481.120000pt;}
.y1c8{bottom:482.080000pt;}
.y30{bottom:483.040000pt;}
.y61{bottom:485.600000pt;}
.y174{bottom:489.120000pt;}
.y9e{bottom:493.600000pt;}
.y200{bottom:495.200000pt;}
.y1c7{bottom:496.160000pt;}
.y2f{bottom:496.800000pt;}
.y125{bottom:498.400000pt;}
.y60{bottom:501.600000pt;}
.y15e{bottom:503.200000pt;}
.ydd{bottom:504.160000pt;}
.y173{bottom:505.120000pt;}
.y21c{bottom:507.680000pt;}
.y1ff{bottom:509.280000pt;}
.y1c6{bottom:510.240000pt;}
.y2e{bottom:510.560000pt;}
.y9d{bottom:511.200000pt;}
.y11f{bottom:516.000000pt;}
.y5f{bottom:517.600000pt;}
.y1a6{bottom:517.920000pt;}
.y15d{bottom:520.800000pt;}
.y172{bottom:521.440000pt;}
.ydb{bottom:522.720000pt;}
.y1fe{bottom:523.360000pt;}
.y2d{bottom:524.320000pt;}
.y9c{bottom:528.800000pt;}
.y5e{bottom:533.920000pt;}
.y1a5{bottom:534.560000pt;}
.y21b{bottom:536.480000pt;}
.y171{bottom:537.440000pt;}
.y2c{bottom:538.080000pt;}
.y15c{bottom:538.400000pt;}
.y9b{bottom:546.400000pt;}
.y121{bottom:547.360000pt;}
.yd7{bottom:548.000000pt;}
.y5d{bottom:549.920000pt;}
.y1fd{bottom:551.520000pt;}
.y2b{bottom:552.160000pt;}
.y1a4{bottom:553.120000pt;}
.y170{bottom:553.440000pt;}
.y15b{bottom:556.000000pt;}
.y1c5{bottom:559.200000pt;}
.y9a{bottom:564.000000pt;}
.y11e{bottom:564.960000pt;}
.y1fc{bottom:565.600000pt;}
.y2a{bottom:565.920000pt;}
.y21a{bottom:568.480000pt;}
.y1a3{bottom:569.440000pt;}
.y16f{bottom:569.760000pt;}
.y15a{bottom:573.600000pt;}
.y29{bottom:579.680000pt;}
.y99{bottom:581.600000pt;}
.y5c{bottom:582.240000pt;}
.y219{bottom:583.840000pt;}
.yd6{bottom:584.160000pt;}
.y1a2{bottom:585.440000pt;}
.y16e{bottom:585.760000pt;}
.y159{bottom:591.200000pt;}
.y1fb{bottom:593.786667pt;}
.y5b{bottom:598.266667pt;}
.y28{bottom:598.906667pt;}
.y98{bottom:599.226667pt;}
.y11c{bottom:599.866667pt;}
.y1a1{bottom:601.466667pt;}
.y16d{bottom:601.786667pt;}
.yd3{bottom:602.746667pt;}
.y1c4{bottom:607.546667pt;}
.y1fa{bottom:607.866667pt;}
.y158{bottom:608.826667pt;}
.y5a{bottom:614.266667pt;}
.y218{bottom:614.586667pt;}
.yd5{bottom:615.866667pt;}
.y97{bottom:616.826667pt;}
.y11d{bottom:617.146667pt;}
.y27{bottom:617.786667pt;}
.y16c{bottom:618.106667pt;}
.y1f9{bottom:621.946667pt;}
.y1c3{bottom:623.546667pt;}
.y157{bottom:626.426667pt;}
.yce{bottom:628.666667pt;}
.y217{bottom:629.946667pt;}
.y59{bottom:630.586667pt;}
.y26{bottom:631.866667pt;}
.y1a0{bottom:633.786667pt;}
.y16b{bottom:634.106667pt;}
.y117{bottom:634.746667pt;}
.y1f8{bottom:636.026667pt;}
.y1c2{bottom:639.546667pt;}
.y96{bottom:640.186667pt;}
.yd2{bottom:642.106667pt;}
.y156{bottom:644.026667pt;}
.y216{bottom:645.306667pt;}
.y25{bottom:645.626667pt;}
.y58{bottom:646.586667pt;}
.y19f{bottom:649.786667pt;}
.y16a{bottom:650.106667pt;}
.y1f7{bottom:650.426667pt;}
.y11a{bottom:652.026667pt;}
.yd1{bottom:654.906667pt;}
.y1c1{bottom:655.866667pt;}
.y24{bottom:659.386667pt;}
.y215{bottom:660.666667pt;}
.y57{bottom:662.586667pt;}
.y155{bottom:663.546667pt;}
.y1f6{bottom:664.506667pt;}
.y19e{bottom:666.106667pt;}
.y169{bottom:666.426667pt;}
.yd0{bottom:668.026667pt;}
.y113{bottom:669.626667pt;}
.y1c0{bottom:671.866667pt;}
.y95{bottom:672.506667pt;}
.y23{bottom:673.146667pt;}
.y56{bottom:678.586667pt;}
.y154{bottom:678.906667pt;}
.yc8{bottom:680.826667pt;}
.y19d{bottom:682.106667pt;}
.y168{bottom:682.426667pt;}
.y22{bottom:686.906667pt;}
.y1bf{bottom:687.866667pt;}
.y94{bottom:688.506667pt;}
.y1f5{bottom:692.666667pt;}
.y55{bottom:694.906667pt;}
.y19c{bottom:698.106667pt;}
.y167{bottom:698.426667pt;}
.ycc{bottom:699.066667pt;}
.y153{bottom:699.706667pt;}
.y21{bottom:700.666667pt;}
.y114{bottom:700.986667pt;}
.y14f{bottom:701.626667pt;}
.y1be{bottom:703.866667pt;}
.y93{bottom:704.506667pt;}
.y1f4{bottom:706.746667pt;}
.y54{bottom:710.946667pt;}
.ycb{bottom:711.906667pt;}
.y20{bottom:714.466667pt;}
.y1bd{bottom:720.226667pt;}
.y92{bottom:720.866667pt;}
.y10e{bottom:724.386667pt;}
.yca{bottom:725.026667pt;}
.y53{bottom:726.946667pt;}
.y1f{bottom:728.226667pt;}
.y19b{bottom:730.466667pt;}
.y1f3{bottom:734.946667pt;}
.y1bc{bottom:736.226667pt;}
.y91{bottom:736.866667pt;}
.yc4{bottom:737.826667pt;}
.y166{bottom:738.146667pt;}
.y1e{bottom:742.306667pt;}
.y52{bottom:743.266667pt;}
.y19a{bottom:746.466667pt;}
.y112{bottom:747.746667pt;}
.y1f2{bottom:749.026667pt;}
.yc7{bottom:750.946667pt;}
.y152{bottom:751.906667pt;}
.y1bb{bottom:752.226667pt;}
.y90{bottom:752.866667pt;}
.y1d{bottom:756.066667pt;}
.y51{bottom:759.266667pt;}
.y199{bottom:762.466667pt;}
.y1f1{bottom:763.106667pt;}
.yc3{bottom:763.746667pt;}
.y151{bottom:765.026667pt;}
.y1ba{bottom:768.546667pt;}
.y8f{bottom:769.186667pt;}
.y1c{bottom:769.826667pt;}
.y111{bottom:771.106667pt;}
.y50{bottom:775.266667pt;}
.y1f0{bottom:777.186667pt;}
.y14d{bottom:777.826667pt;}
.y198{bottom:778.786667pt;}
.y1b{bottom:783.586667pt;}
.y165{bottom:784.546667pt;}
.yc2{bottom:784.866667pt;}
.y8e{bottom:785.186667pt;}
.y14e{bottom:790.946667pt;}
.y1ef{bottom:791.266667pt;}
.y4f{bottom:791.586667pt;}
.y110{bottom:794.466667pt;}
.y197{bottom:794.786667pt;}
.y1a{bottom:797.346667pt;}
.y1b9{bottom:800.546667pt;}
.y8d{bottom:801.186667pt;}
.y164{bottom:803.106667pt;}
.y14b{bottom:803.746667pt;}
.y1ee{bottom:805.346667pt;}
.y4e{bottom:807.586667pt;}
.yc1{bottom:807.906667pt;}
.y196{bottom:810.786667pt;}
.y19{bottom:811.106667pt;}
.y14c{bottom:816.546667pt;}
.y1b8{bottom:816.866667pt;}
.y8c{bottom:817.186667pt;}
.y108{bottom:818.146667pt;}
.y1ed{bottom:819.746667pt;}
.y4d{bottom:823.586667pt;}
.y18{bottom:824.866667pt;}
.yc0{bottom:825.506667pt;}
.y195{bottom:827.106667pt;}
.y149{bottom:829.693333pt;}
.y1b7{bottom:832.893333pt;}
.y8b{bottom:833.533333pt;}
.y1ec{bottom:833.853333pt;}
.y17{bottom:838.653333pt;}
.y4c{bottom:839.933333pt;}
.y10b{bottom:841.213333pt;}
.y14a{bottom:842.493333pt;}
.ybf{bottom:843.133333pt;}
.y1eb{bottom:847.933333pt;}
.y1b6{bottom:848.893333pt;}
.y8a{bottom:849.533333pt;}
.y16{bottom:852.733333pt;}
.y4b{bottom:855.933333pt;}
.y194{bottom:859.773333pt;}
.ybe{bottom:860.733333pt;}
.y1ea{bottom:862.013333pt;}
.y107{bottom:864.893333pt;}
.y1b5{bottom:865.213333pt;}
.y89{bottom:865.533333pt;}
.y15{bottom:866.493333pt;}
.y147{bottom:867.773333pt;}
.y4a{bottom:871.933333pt;}
.y1e9{bottom:876.093333pt;}
.ybd{bottom:878.333333pt;}
.y193{bottom:878.653333pt;}
.y14{bottom:880.253333pt;}
.y148{bottom:880.573333pt;}
.y88{bottom:881.853333pt;}
.y49{bottom:887.933333pt;}
.y1b4{bottom:889.533333pt;}
.y1e8{bottom:890.173333pt;}
.y145{bottom:893.693333pt;}
.y13{bottom:894.013333pt;}
.y192{bottom:894.653333pt;}
.ybc{bottom:895.933333pt;}
.y106{bottom:896.253333pt;}
.y87{bottom:897.853333pt;}
.y48{bottom:904.253333pt;}
.y12{bottom:907.773333pt;}
.y191{bottom:910.653333pt;}
.ybb{bottom:913.533333pt;}
.y86{bottom:913.853333pt;}
.y1e7{bottom:918.333333pt;}
.y146{bottom:918.973333pt;}
.y105{bottom:919.293333pt;}
.y47{bottom:920.253333pt;}
.y11{bottom:921.533333pt;}
.y1b3{bottom:921.853333pt;}
.y190{bottom:926.973333pt;}
.y85{bottom:930.173333pt;}
.yba{bottom:931.133333pt;}
.y13f{bottom:931.773333pt;}
.y1e6{bottom:932.413333pt;}
.y104{bottom:936.893333pt;}
.y1b2{bottom:937.853333pt;}
.y18f{bottom:942.973333pt;}
.y143{bottom:944.573333pt;}
.y84{bottom:946.173333pt;}
.y1e5{bottom:946.493333pt;}
.yb9{bottom:948.773333pt;}
.y10{bottom:951.973333pt;}
.y1b1{bottom:953.893333pt;}
.y103{bottom:954.533333pt;}
.y18e{bottom:959.013333pt;}
.y1e4{bottom:960.613333pt;}
.y83{bottom:962.213333pt;}
.yb8{bottom:966.693333pt;}
.y142{bottom:969.893333pt;}
.y102{bottom:972.133333pt;}
.y1e3{bottom:974.693333pt;}
.y18d{bottom:975.973333pt;}
.y82{bottom:978.533333pt;}
.y141{bottom:983.013333pt;}
.yb7{bottom:984.293333pt;}
.yf{bottom:988.773333pt;}
.y101{bottom:989.733333pt;}
.y81{bottom:994.533333pt;}
.y13d{bottom:995.813333pt;}
.yb6{bottom:1001.893333pt;}
.y1e2{bottom:1003.173333pt;}
.y100{bottom:1007.653333pt;}
.y13e{bottom:1008.613333pt;}
.y80{bottom:1010.533333pt;}
.y1e1{bottom:1017.253333pt;}
.yb5{bottom:1019.493333pt;}
.y13c{bottom:1021.733333pt;}
.yff{bottom:1025.253333pt;}
.ye{bottom:1025.573333pt;}
.y7f{bottom:1026.533333pt;}
.y1e0{bottom:1031.333333pt;}
.y7e{bottom:1042.853333pt;}
.y1df{bottom:1045.413333pt;}
.y2{bottom:1082.240000pt;}
.y4{bottom:1094.720000pt;}
.y1{bottom:1097.600000pt;}
.h3a{height:4.065000pt;}
.h12{height:12.160000pt;}
.h17{height:12.192000pt;}
.h16{height:12.480000pt;}
.h1a{height:12.800000pt;}
.h4{height:15.360000pt;}
.h22{height:16.320000pt;}
.h31{height:16.640000pt;}
.h30{height:16.960000pt;}
.h33{height:16.992000pt;}
.h18{height:17.600000pt;}
.h24{height:18.912000pt;}
.h2a{height:22.432000pt;}
.h26{height:22.720000pt;}
.h2d{height:22.752000pt;}
.h29{height:23.040000pt;}
.h1e{height:24.320000pt;}
.h1d{height:24.352000pt;}
.h1c{height:24.640000pt;}
.h1f{height:24.672000pt;}
.h14{height:25.280000pt;}
.h21{height:25.920000pt;}
.h20{height:26.880000pt;}
.h1b{height:27.520000pt;}
.h13{height:29.803125pt;}
.h2e{height:30.720000pt;}
.h36{height:31.072000pt;}
.h6{height:32.133750pt;}
.he{height:33.536250pt;}
.h2f{height:34.240000pt;}
.h32{height:34.272000pt;}
.h27{height:34.278750pt;}
.hd{height:34.318750pt;}
.h23{height:35.872000pt;}
.h10{height:36.480000pt;}
.h5{height:36.800000pt;}
.h38{height:37.440000pt;}
.h2{height:37.931250pt;}
.hb{height:38.617500pt;}
.h25{height:39.138750pt;}
.ha{height:39.472500pt;}
.h3b{height:39.821250pt;}
.h3{height:42.682500pt;}
.h11{height:43.627500pt;}
.h7{height:44.480000pt;}
.h28{height:46.112000pt;}
.h9{height:47.782500pt;}
.h34{height:48.320000pt;}
.hf{height:50.812500pt;}
.h19{height:51.520000pt;}
.h2c{height:54.112000pt;}
.h15{height:56.352000pt;}
.h3c{height:58.563750pt;}
.h37{height:63.392000pt;}
.h39{height:75.552000pt;}
.h35{height:83.232000pt;}
.hc{height:84.348750pt;}
.h2b{height:92.800000pt;}
.h8{height:101.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.080000pt;}
.wd{width:48.000000pt;}
.w1d{width:51.232000pt;}
.w16{width:52.832000pt;}
.we{width:53.792000pt;}
.wc{width:54.112000pt;}
.w13{width:55.072000pt;}
.w17{width:55.712000pt;}
.w14{width:56.992000pt;}
.wf{width:61.792000pt;}
.w24{width:62.432000pt;}
.w1e{width:64.352000pt;}
.w15{width:65.600000pt;}
.w22{width:68.512000pt;}
.w1f{width:78.432000pt;}
.w1a{width:80.032000pt;}
.w23{width:80.992000pt;}
.wb{width:81.312000pt;}
.wa{width:84.512000pt;}
.w11{width:88.992000pt;}
.w9{width:91.232000pt;}
.w18{width:93.792000pt;}
.w21{width:96.032000pt;}
.w10{width:97.952000pt;}
.w1c{width:98.912000pt;}
.w12{width:104.704000pt;}
.w19{width:113.024000pt;}
.w8{width:123.264000pt;}
.w1b{width:143.426667pt;}
.w20{width:144.066667pt;}
.w3{width:171.906667pt;}
.w6{width:171.933333pt;}
.w7{width:176.386667pt;}
.w4{width:234.013333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x27{left:6.720000pt;}
.x3e{left:7.680000pt;}
.x3b{left:8.640000pt;}
.x6{left:9.600000pt;}
.x2c{left:10.880000pt;}
.x44{left:12.480000pt;}
.x3d{left:13.440000pt;}
.x29{left:14.400000pt;}
.x50{left:15.360000pt;}
.x19{left:16.320000pt;}
.x26{left:17.920000pt;}
.x22{left:18.880000pt;}
.x36{left:20.520000pt;}
.x25{left:21.440000pt;}
.x3f{left:23.040000pt;}
.x37{left:24.360000pt;}
.x2f{left:25.920000pt;}
.x40{left:27.520000pt;}
.x35{left:28.506667pt;}
.x18{left:31.386667pt;}
.x1c{left:32.360000pt;}
.x49{left:33.600000pt;}
.x1d{left:34.586667pt;}
.x21{left:35.880000pt;}
.x45{left:36.800000pt;}
.x20{left:37.800000pt;}
.x34{left:39.066667pt;}
.x1f{left:40.040000pt;}
.x24{left:41.306667pt;}
.x1e{left:42.586667pt;}
.x1a{left:45.466667pt;}
.x23{left:46.746667pt;}
.x16{left:55.386667pt;}
.x7{left:63.072000pt;}
.x54{left:68.191988pt;}
.xb{left:72.032000pt;}
.x8{left:77.472000pt;}
.x5b{left:81.311988pt;}
.x5a{left:90.911988pt;}
.x5d{left:109.791988pt;}
.x12{left:117.151988pt;}
.x13{left:123.903988pt;}
.x59{left:131.263988pt;}
.x48{left:142.466667pt;}
.x58{left:144.706655pt;}
.xc{left:161.026667pt;}
.x55{left:162.946655pt;}
.x56{left:169.346655pt;}
.xa{left:170.306667pt;}
.x10{left:182.466655pt;}
.x46{left:221.533333pt;}
.x4a{left:224.733322pt;}
.x9{left:234.653333pt;}
.x1{left:247.133333pt;}
.x47{left:321.093333pt;}
.x53{left:382.879988pt;}
.x5c{left:387.359988pt;}
.x3{left:390.240000pt;}
.x2{left:393.760000pt;}
.xf{left:396.959988pt;}
.xd{left:406.560000pt;}
.x4c{left:414.240000pt;}
.xe{left:416.160000pt;}
.x15{left:419.040000pt;}
.x31{left:422.560000pt;}
.x39{left:424.800000pt;}
.x5{left:425.760000pt;}
.x4b{left:427.039988pt;}
.x11{left:449.120000pt;}
.x41{left:466.746655pt;}
.x30{left:471.546655pt;}
.x28{left:479.546655pt;}
.x3a{left:480.506667pt;}
.x4f{left:495.866667pt;}
.x52{left:497.146655pt;}
.x2a{left:500.346667pt;}
.x57{left:503.866655pt;}
.x1b{left:510.906667pt;}
.x14{left:518.586655pt;}
.x42{left:519.546667pt;}
.x38{left:520.506655pt;}
.x32{left:521.466667pt;}
.x3c{left:538.146667pt;}
.x2b{left:555.106667pt;}
.x4d{left:558.946667pt;}
.x17{left:596.066667pt;}
.x2d{left:603.746667pt;}
.x33{left:611.106667pt;}
.x43{left:633.213333pt;}
.x4e{left:655.613333pt;}
.x2e{left:658.173333pt;}
.x4{left:725.413333pt;}
.x51{left:728.933322pt;}
}




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