
    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_a3203380b7f3287151f87f5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_8f8931695cf3411723ec42c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_7b98b97c0277a6d35d2325f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_b3ea4d2805ea3c0be45df173.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_b9db70315be00a766e45c8f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694824;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_83c51cf4492be0e39b30792d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_b2da9e863358463a5a601453.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_f8b28f5569dc2891d14e9ba9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.281250;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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.281250;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_7c64f6574ddfb0cda3ac2081.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_79d83eefe20b8458061ab335.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.981934;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);}
.v2{vertical-align:-30.240000px;}
.v5{vertical-align:-15.120000px;}
.v3{vertical-align:-5.940000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.940000px;}
.v9{vertical-align:15.120000px;}
.v4{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.852000px;}
.lsf{letter-spacing:-0.834000px;}
.ls30{letter-spacing:-0.798000px;}
.ls2a{letter-spacing:-0.768000px;}
.lsc{letter-spacing:-0.744000px;}
.lse{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.702000px;}
.ls11{letter-spacing:-0.587400px;}
.ls36{letter-spacing:-0.463800px;}
.ls33{letter-spacing:-0.366000px;}
.ls32{letter-spacing:-0.348600px;}
.ls23{letter-spacing:-0.270000px;}
.ls37{letter-spacing:-0.250800px;}
.ls29{letter-spacing:-0.238800px;}
.ls1c{letter-spacing:-0.227400px;}
.ls16{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.172200px;}
.ls2c{letter-spacing:-0.164400px;}
.lsb{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.115200px;}
.ls8{letter-spacing:-0.078156px;}
.ls1b{letter-spacing:-0.078000px;}
.ls24{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.049200px;}
.ls17{letter-spacing:-0.048960px;}
.ls1d{letter-spacing:-0.025920px;}
.lsa{letter-spacing:-0.025800px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010320px;}
.ls1e{letter-spacing:0.020160px;}
.ls2f{letter-spacing:0.060600px;}
.ls18{letter-spacing:0.069120px;}
.ls25{letter-spacing:0.078000px;}
.ls2b{letter-spacing:0.089400px;}
.ls5{letter-spacing:0.090000px;}
.ls34{letter-spacing:0.132480px;}
.ls10{letter-spacing:0.132600px;}
.ls31{letter-spacing:0.141000px;}
.ls2e{letter-spacing:0.150000px;}
.ls28{letter-spacing:0.158400px;}
.ls2{letter-spacing:0.209280px;}
.ls20{letter-spacing:0.209400px;}
.ls1f{letter-spacing:0.209520px;}
.ls35{letter-spacing:0.252480px;}
.ls7{letter-spacing:0.256200px;}
.ls22{letter-spacing:0.274800px;}
.ls2d{letter-spacing:0.354000px;}
.ls21{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.357120px;}
.ls1{letter-spacing:0.367920px;}
.ls19{letter-spacing:0.371400px;}
.ls27{letter-spacing:0.391680px;}
.ls12{letter-spacing:0.447840px;}
.ls26{letter-spacing:8.789760px;}
.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;}
}
.ws0{word-spacing:-19.038240px;}
.ws3{word-spacing:-16.272000px;}
.ws35{word-spacing:-15.341640px;}
.ws47{word-spacing:-15.324240px;}
.ws33{word-spacing:-15.226440px;}
.ws42{word-spacing:-15.128640px;}
.ws48{word-spacing:-15.111240px;}
.ws2f{word-spacing:-15.102840px;}
.ws45{word-spacing:-15.059640px;}
.ws40{word-spacing:-15.048240px;}
.ws4b{word-spacing:-15.030840px;}
.ws3b{word-spacing:-14.990400px;}
.ws1{word-spacing:-14.970240px;}
.ws2a{word-spacing:-14.944440px;}
.ws3a{word-spacing:-14.944320px;}
.ws41{word-spacing:-14.921280px;}
.ws38{word-spacing:-14.892240px;}
.ws2c{word-spacing:-14.855040px;}
.ws46{word-spacing:-14.805840px;}
.ws43{word-spacing:-14.754240px;}
.ws39{word-spacing:-14.742840px;}
.ws44{word-spacing:-14.731440px;}
.ws4d{word-spacing:-14.719440px;}
.ws49{word-spacing:-14.621640px;}
.ws4a{word-spacing:-14.604240px;}
.ws4c{word-spacing:-14.506440px;}
.ws2e{word-spacing:-14.382840px;}
.ws36{word-spacing:-14.268240px;}
.ws2b{word-spacing:-14.226240px;}
.ws2d{word-spacing:-14.136240px;}
.ws29{word-spacing:-14.034240px;}
.ws3c{word-spacing:-13.862760px;}
.ws3d{word-spacing:-13.780560px;}
.ws3e{word-spacing:-13.715160px;}
.ws31{word-spacing:-13.505760px;}
.ws34{word-spacing:-13.447440px;}
.ws30{word-spacing:-13.333560px;}
.ws3f{word-spacing:-11.934000px;}
.ws2{word-spacing:-9.437760px;}
.ws37{word-spacing:-8.786880px;}
.ws32{word-spacing:-8.136000px;}
.ws10{word-spacing:-1.014000px;}
.ws17{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.462000px;}
.ws26{word-spacing:-0.396000px;}
.ws28{word-spacing:-0.330803px;}
.wse{word-spacing:-0.330000px;}
.ws27{word-spacing:-0.264000px;}
.ws20{word-spacing:-0.222000px;}
.ws1f{word-spacing:-0.198000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:0.198000px;}
.ws16{word-spacing:0.264000px;}
.ws18{word-spacing:0.330000px;}
.ws15{word-spacing:0.492000px;}
.ws1e{word-spacing:0.618000px;}
.ws8{word-spacing:2.610000px;}
.ws4{word-spacing:3.288000px;}
.ws6{word-spacing:3.372000px;}
.ws7{word-spacing:3.456000px;}
.ws14{word-spacing:5.694000px;}
.ws11{word-spacing:5.826000px;}
.ws13{word-spacing:5.832000px;}
.ws12{word-spacing:5.898000px;}
.ws1c{word-spacing:8.544000px;}
.ws19{word-spacing:8.676000px;}
.ws1a{word-spacing:8.742000px;}
.ws1b{word-spacing:9.888000px;}
.ws9{word-spacing:9.900000px;}
.wsb{word-spacing:10.002000px;}
.wsc{word-spacing:10.134000px;}
.wsd{word-spacing:10.230000px;}
.wsa{word-spacing:10.266000px;}
.ws25{word-spacing:11.460000px;}
.ws21{word-spacing:12.252000px;}
.ws24{word-spacing:12.318000px;}
.ws23{word-spacing:12.384000px;}
.ws22{word-spacing:12.450000px;}
._11{margin-left:-4.491120px;}
._c{margin-left:-2.782146px;}
._0{margin-left:-1.334880px;}
._7{width:1.038515px;}
._1{width:2.530822px;}
._8{width:3.761911px;}
._3{width:5.689751px;}
._4{width:7.603365px;}
._2{width:8.824688px;}
._9{width:10.099293px;}
._6{width:11.101112px;}
._5{width:12.222708px;}
._10{width:13.839270px;}
._d{width:16.140480px;}
._13{width:17.421120px;}
._19{width:18.543599px;}
._f{width:19.606841px;}
._b{width:20.865600px;}
._a{width:21.991812px;}
._14{width:23.780028px;}
._15{width:24.783972px;}
._18{width:28.152000px;}
._e{width:29.211641px;}
._1a{width:31.189440px;}
._16{width:33.517440px;}
._17{width:34.661760px;}
._12{width:41.201412px;}
._1d{width:849.185760px;}
._1b{width:1189.738800px;}
._1c{width:1241.579520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.960000px;}
.y12a{bottom:4.125000px;}
.y7a{bottom:4.140000px;}
.yf0{bottom:6.120000px;}
.yf2{bottom:6.300000px;}
.yef{bottom:8.280000px;}
.yed{bottom:8.310000px;}
.y156{bottom:8.445000px;}
.y14c{bottom:8.460000px;}
.y152{bottom:8.505000px;}
.y14f{bottom:8.640000px;}
.y1aa{bottom:13.125000px;}
.y1af{bottom:13.140000px;}
.y1ac{bottom:13.320000px;}
.y67{bottom:33.498900px;}
.yea{bottom:33.783000px;}
.y66{bottom:50.422680px;}
.ye9{bottom:50.702250px;}
.y97{bottom:57.636000px;}
.y65{bottom:67.436640px;}
.ye8{bottom:67.711650px;}
.y13{bottom:77.796000px;}
.y64{bottom:84.450600px;}
.ye7{bottom:84.721200px;}
.y63{bottom:101.464560px;}
.ye6{bottom:101.730600px;}
.y197{bottom:113.436000px;}
.y77{bottom:113.796000px;}
.y62{bottom:118.478520px;}
.ye5{bottom:118.740000px;}
.yaa{bottom:119.196000px;}
.y96{bottom:120.636000px;}
.y111{bottom:122.616000px;}
.y171{bottom:126.936000px;}
.y117{bottom:128.736000px;}
.y149{bottom:131.976000px;}
.y61{bottom:135.402300px;}
.ye4{bottom:135.659250px;}
.y1d0{bottom:140.436000px;}
.y196{bottom:142.236000px;}
.y76{bottom:144.036000px;}
.ya9{bottom:149.436000px;}
.y95{bottom:150.870000px;}
.y60{bottom:152.416260px;}
.ye3{bottom:152.668800px;}
.y110{bottom:152.670000px;}
.y116{bottom:156.270000px;}
.y170{bottom:157.170000px;}
.y1a8{bottom:160.950000px;}
.y148{bottom:162.210000px;}
.y195{bottom:166.530000px;}
.y5f{bottom:169.430220px;}
.ye2{bottom:169.678200px;}
.y1cf{bottom:170.670000px;}
.y75{bottom:174.090000px;}
.ya8{bottom:179.490000px;}
.y94{bottom:181.110000px;}
.y10f{bottom:182.910000px;}
.y115{bottom:183.630000px;}
.y5e{bottom:186.444180px;}
.ye1{bottom:186.687750px;}
.y16f{bottom:187.230000px;}
.y1a7{bottom:191.190000px;}
.y147{bottom:192.270000px;}
.y1ce{bottom:200.910000px;}
.y5d{bottom:203.458140px;}
.ye0{bottom:203.697150px;}
.y74{bottom:204.330000px;}
.ya7{bottom:209.730000px;}
.y114{bottom:211.170000px;}
.y93{bottom:211.350000px;}
.y10e{bottom:213.150000px;}
.y16e{bottom:217.470000px;}
.y5c{bottom:220.381920px;}
.ydf{bottom:220.616400px;}
.y1a6{bottom:221.430000px;}
.y146{bottom:222.510000px;}
.y1cd{bottom:231.150000px;}
.y73{bottom:234.570000px;}
.y5b{bottom:237.395880px;}
.yde{bottom:237.625800px;}
.y113{bottom:238.530000px;}
.ya6{bottom:239.970000px;}
.y92{bottom:241.410000px;}
.y10d{bottom:243.390000px;}
.y16d{bottom:247.710000px;}
.y1a5{bottom:251.490000px;}
.y145{bottom:252.750000px;}
.y5a{bottom:254.409840px;}
.ydd{bottom:254.635350px;}
.y1cc{bottom:261.210000px;}
.y72{bottom:264.810000px;}
.y112{bottom:266.070000px;}
.ya5{bottom:270.210000px;}
.y59{bottom:271.423800px;}
.ydc{bottom:271.644750px;}
.y91{bottom:271.650000px;}
.y10c{bottom:273.675000px;}
.y16c{bottom:277.995000px;}
.y1a4{bottom:281.775000px;}
.y144{bottom:283.035000px;}
.y58{bottom:288.437760px;}
.ydb{bottom:288.654150px;}
.y1cb{bottom:291.495000px;}
.y189{bottom:291.855000px;}
.y71{bottom:295.095000px;}
.ya4{bottom:300.495000px;}
.y90{bottom:301.935000px;}
.y10b{bottom:303.915000px;}
.y57{bottom:305.361540px;}
.yda{bottom:305.573400px;}
.y16b{bottom:308.235000px;}
.y1a3{bottom:312.015000px;}
.y143{bottom:313.275000px;}
.y1ca{bottom:321.735000px;}
.y188{bottom:322.095000px;}
.y56{bottom:322.375500px;}
.yd9{bottom:322.582950px;}
.y70{bottom:325.335000px;}
.ya3{bottom:330.735000px;}
.y8f{bottom:332.175000px;}
.y10a{bottom:334.155000px;}
.y16a{bottom:338.475000px;}
.y55{bottom:339.389460px;}
.yd8{bottom:339.592350px;}
.y1a2{bottom:342.255000px;}
.y142{bottom:343.515000px;}
.y1c9{bottom:351.975000px;}
.y187{bottom:352.335000px;}
.y6f{bottom:355.575000px;}
.y54{bottom:356.403420px;}
.yd7{bottom:356.601750px;}
.ya2{bottom:360.975000px;}
.y8e{bottom:362.415000px;}
.y109{bottom:364.215000px;}
.y169{bottom:368.715000px;}
.y1a1{bottom:372.495000px;}
.y53{bottom:373.417380px;}
.yd6{bottom:373.611300px;}
.y141{bottom:377.175000px;}
.y8d{bottom:381.495000px;}
.y1c8{bottom:382.215000px;}
.y186{bottom:382.575000px;}
.y8c{bottom:385.275000px;}
.y6e{bottom:385.635000px;}
.y52{bottom:390.431340px;}
.yd5{bottom:390.620700px;}
.ya1{bottom:391.035000px;}
.y108{bottom:394.455000px;}
.y140{bottom:396.435000px;}
.y8b{bottom:398.055000px;}
.y168{bottom:398.775000px;}
.y8a{bottom:401.835000px;}
.y1a0{bottom:402.735000px;}
.y51{bottom:407.355120px;}
.yd4{bottom:407.539950px;}
.y194{bottom:409.395000px;}
.y1c7{bottom:412.455000px;}
.y13f{bottom:412.815000px;}
.y89{bottom:414.615000px;}
.y6d{bottom:415.875000px;}
.y88{bottom:418.395000px;}
.ya0{bottom:421.275000px;}
.y50{bottom:424.369080px;}
.yd3{bottom:424.549500px;}
.y107{bottom:424.695000px;}
.y87{bottom:428.115000px;}
.y167{bottom:429.015000px;}
.y13e{bottom:429.375000px;}
.y19f{bottom:432.795000px;}
.y13d{bottom:433.155000px;}
.y4f{bottom:441.383040px;}
.yd2{bottom:441.558900px;}
.y1c6{bottom:442.695000px;}
.y13c{bottom:442.875000px;}
.y6c{bottom:446.115000px;}
.y86{bottom:447.195000px;}
.y9f{bottom:451.515000px;}
.y106{bottom:454.935000px;}
.y4e{bottom:458.397000px;}
.yd1{bottom:458.568300px;}
.y166{bottom:459.255000px;}
.y13b{bottom:461.955000px;}
.y19e{bottom:463.035000px;}
.y85{bottom:466.095000px;}
.y1c5{bottom:472.755000px;}
.y185{bottom:473.115000px;}
.y4d{bottom:475.410960px;}
.yd0{bottom:475.577850px;}
.y6b{bottom:476.355000px;}
.y9e{bottom:480.315000px;}
.y13a{bottom:481.035000px;}
.y84{bottom:485.175000px;}
.y165{bottom:489.495000px;}
.y4c{bottom:492.334740px;}
.ycf{bottom:492.497100px;}
.y19d{bottom:493.275000px;}
.y139{bottom:500.115000px;}
.y1c4{bottom:502.995000px;}
.y184{bottom:503.355000px;}
.y83{bottom:504.255000px;}
.y6a{bottom:506.595000px;}
.y4b{bottom:509.348700px;}
.yce{bottom:509.506500px;}
.y105{bottom:515.415000px;}
.y17d{bottom:517.755000px;}
.y138{bottom:519.015000px;}
.y164{bottom:519.735000px;}
.y82{bottom:523.335000px;}
.y19c{bottom:523.515000px;}
.y4a{bottom:526.362660px;}
.ycd{bottom:526.516050px;}
.y1c3{bottom:533.235000px;}
.y183{bottom:533.595000px;}
.y69{bottom:536.835000px;}
.y137{bottom:538.095000px;}
.y81{bottom:542.415000px;}
.y49{bottom:543.376620px;}
.ycc{bottom:543.525450px;}
.y104{bottom:545.475000px;}
.y17c{bottom:547.995000px;}
.y163{bottom:549.975000px;}
.y19b{bottom:553.755000px;}
.y136{bottom:557.205000px;}
.y48{bottom:560.390580px;}
.ycb{bottom:560.534850px;}
.y80{bottom:561.525000px;}
.y1c2{bottom:563.505000px;}
.y182{bottom:563.865000px;}
.y68{bottom:566.925000px;}
.y103{bottom:575.745000px;}
.y135{bottom:576.285000px;}
.y47{bottom:577.314360px;}
.yca{bottom:577.454100px;}
.y17b{bottom:578.265000px;}
.y162{bottom:580.065000px;}
.y9d{bottom:580.425000px;}
.y7f{bottom:580.605000px;}
.y19a{bottom:584.025000px;}
.y1c1{bottom:593.745000px;}
.y181{bottom:594.105000px;}
.y46{bottom:594.328320px;}
.yc9{bottom:594.463650px;}
.y134{bottom:595.365000px;}
.y26{bottom:597.165000px;}
.y9c{bottom:599.505000px;}
.y7e{bottom:599.685000px;}
.y161{bottom:604.185000px;}
.ye{bottom:604.390500px;}
.y102{bottom:605.985000px;}
.y17a{bottom:608.325000px;}
.y45{bottom:611.342280px;}
.yc8{bottom:611.473050px;}
.y133{bottom:614.445000px;}
.y199{bottom:617.685000px;}
.y9b{bottom:618.585000px;}
.y7d{bottom:618.765000px;}
.y160{bottom:622.185000px;}
.y1c0{bottom:623.985000px;}
.y180{bottom:624.345000px;}
.y15f{bottom:625.965000px;}
.y25{bottom:627.405000px;}
.y44{bottom:628.356240px;}
.yc7{bottom:628.482450px;}
.y132{bottom:633.525000px;}
.y1b2{bottom:633.885000px;}
.y101{bottom:636.225000px;}
.y9a{bottom:637.665000px;}
.y7b{bottom:637.845000px;}
.y179{bottom:638.565000px;}
.y15e{bottom:638.745000px;}
.y15d{bottom:642.525000px;}
.y43{bottom:645.370200px;}
.yc6{bottom:645.492000px;}
.y131{bottom:652.605000px;}
.y17f{bottom:652.965000px;}
.y1bf{bottom:654.045000px;}
.y15c{bottom:655.125000px;}
.y79{bottom:656.745000px;}
.y24{bottom:657.645000px;}
.y193{bottom:658.005000px;}
.y15b{bottom:658.905000px;}
.y1b1{bottom:662.145000px;}
.y42{bottom:662.293980px;}
.yc5{bottom:662.411250px;}
.yd{bottom:664.690500px;}
.y100{bottom:666.465000px;}
.y15a{bottom:668.625000px;}
.y178{bottom:668.805000px;}
.y130{bottom:671.685000px;}
.y99{bottom:675.825000px;}
.y17e{bottom:677.445000px;}
.y41{bottom:679.307940px;}
.yc4{bottom:679.420650px;}
.y1be{bottom:684.285000px;}
.y23{bottom:687.885000px;}
.y192{bottom:688.245000px;}
.y78{bottom:689.145000px;}
.y1b0{bottom:690.405000px;}
.y12f{bottom:690.585000px;}
.y159{bottom:692.385000px;}
.yc{bottom:694.930500px;}
.y40{bottom:696.321900px;}
.yc3{bottom:696.430050px;}
.yff{bottom:696.705000px;}
.y177{bottom:699.045000px;}
.y98{bottom:704.985000px;}
.y12e{bottom:709.665000px;}
.y3f{bottom:713.335860px;}
.yc2{bottom:713.439600px;}
.y1bd{bottom:714.525000px;}
.y158{bottom:715.965000px;}
.y22{bottom:718.125000px;}
.y191{bottom:718.485000px;}
.y1ae{bottom:718.665000px;}
.yb{bottom:722.416500px;}
.yfe{bottom:726.945000px;}
.y12d{bottom:728.745000px;}
.y176{bottom:729.285000px;}
.y3e{bottom:730.349820px;}
.yc1{bottom:730.449000px;}
.y157{bottom:739.545000px;}
.y1bc{bottom:744.765000px;}
.ya{bottom:745.141500px;}
.y1ad{bottom:746.745000px;}
.y3d{bottom:747.273600px;}
.yc0{bottom:747.369750px;}
.y12c{bottom:747.825000px;}
.y21{bottom:748.365000px;}
.y190{bottom:748.725000px;}
.yfd{bottom:757.005000px;}
.y175{bottom:759.525000px;}
.y155{bottom:763.320000px;}
.y3c{bottom:764.287560px;}
.ybf{bottom:764.379300px;}
.y12b{bottom:766.905000px;}
.y1ab{bottom:775.005000px;}
.y9{bottom:775.381500px;}
.y20{bottom:778.425000px;}
.y18f{bottom:778.965000px;}
.y3b{bottom:781.301520px;}
.ybe{bottom:781.388700px;}
.y129{bottom:786.000000px;}
.y154{bottom:786.885000px;}
.yfc{bottom:787.245000px;}
.y174{bottom:789.765000px;}
.y3a{bottom:798.315480px;}
.ybd{bottom:798.398100px;}
.y8{bottom:802.867500px;}
.y1a9{bottom:803.280000px;}
.y128{bottom:805.065000px;}
.y1bb{bottom:805.245000px;}
.y1f{bottom:808.665000px;}
.y18e{bottom:809.025000px;}
.y153{bottom:810.465000px;}
.y39{bottom:815.329440px;}
.ybc{bottom:815.407650px;}
.yfb{bottom:817.485000px;}
.y173{bottom:818.385000px;}
.y127{bottom:824.145000px;}
.y7{bottom:825.547500px;}
.y38{bottom:832.253220px;}
.ybb{bottom:832.326900px;}
.y151{bottom:834.225000px;}
.y1ba{bottom:835.485000px;}
.y1e{bottom:838.950000px;}
.y18d{bottom:839.310000px;}
.y198{bottom:840.030000px;}
.y172{bottom:842.910000px;}
.y126{bottom:843.270000px;}
.yfa{bottom:847.770000px;}
.y37{bottom:849.267180px;}
.yba{bottom:849.336300px;}
.y6{bottom:855.787500px;}
.y150{bottom:857.850000px;}
.y125{bottom:862.350000px;}
.y1b9{bottom:865.590000px;}
.y36{bottom:866.281140px;}
.yb9{bottom:866.345700px;}
.y1d{bottom:869.190000px;}
.y18c{bottom:869.550000px;}
.yf9{bottom:878.010000px;}
.y124{bottom:881.250000px;}
.y14e{bottom:881.430000px;}
.y5{bottom:883.273500px;}
.y35{bottom:883.295100px;}
.yb8{bottom:883.355250px;}
.y1b8{bottom:895.830000px;}
.y18b{bottom:898.350000px;}
.y1c{bottom:899.430000px;}
.y34{bottom:900.309060px;}
.y123{bottom:900.330000px;}
.yb7{bottom:900.364650px;}
.y14d{bottom:905.190000px;}
.y4{bottom:905.598000px;}
.yf8{bottom:908.250000px;}
.y33{bottom:917.232840px;}
.yb6{bottom:917.285400px;}
.y122{bottom:919.410000px;}
.y18a{bottom:922.830000px;}
.y1b7{bottom:926.070000px;}
.y14b{bottom:928.770000px;}
.y1b{bottom:929.670000px;}
.y32{bottom:934.246800px;}
.yb5{bottom:934.294950px;}
.y3{bottom:935.838000px;}
.yf7{bottom:938.310000px;}
.y121{bottom:938.490000px;}
.y31{bottom:951.260760px;}
.yb4{bottom:951.304350px;}
.y1b6{bottom:956.310000px;}
.y120{bottom:957.570000px;}
.y1a{bottom:959.910000px;}
.y14a{bottom:960.990000px;}
.y30{bottom:968.274720px;}
.yb3{bottom:968.313750px;}
.yf6{bottom:968.550000px;}
.y2{bottom:970.033500px;}
.y11f{bottom:976.650000px;}
.y2f{bottom:985.288680px;}
.yb2{bottom:985.323300px;}
.y1b5{bottom:986.550000px;}
.y19{bottom:989.970000px;}
.y11e{bottom:995.730000px;}
.yf5{bottom:998.790000px;}
.y2e{bottom:1002.212460px;}
.yb1{bottom:1002.244050px;}
.y1{bottom:1008.553500px;}
.y11d{bottom:1014.810000px;}
.y1b4{bottom:1016.790000px;}
.y2d{bottom:1019.226420px;}
.yb0{bottom:1019.253450px;}
.y18{bottom:1020.210000px;}
.yf4{bottom:1029.030000px;}
.y11c{bottom:1033.890000px;}
.y2c{bottom:1036.240380px;}
.yaf{bottom:1036.262850px;}
.yf3{bottom:1045.230000px;}
.y1b3{bottom:1046.850000px;}
.y17{bottom:1050.450000px;}
.y11b{bottom:1052.790000px;}
.y2b{bottom:1053.254340px;}
.yae{bottom:1053.272400px;}
.yf1{bottom:1068.450000px;}
.y2a{bottom:1070.268300px;}
.yad{bottom:1070.281800px;}
.y11a{bottom:1071.870000px;}
.y16{bottom:1080.690000px;}
.y29{bottom:1087.192080px;}
.yac{bottom:1087.201050px;}
.y119{bottom:1090.950000px;}
.yee{bottom:1091.850000px;}
.y28{bottom:1104.206040px;}
.yab{bottom:1104.210600px;}
.y118{bottom:1110.030000px;}
.y15{bottom:1110.930000px;}
.yec{bottom:1115.070000px;}
.y27{bottom:1121.220000px;}
.y14{bottom:1141.200000px;}
.y12{bottom:1142.428500px;}
.yeb{bottom:1142.460000px;}
.y11{bottom:1164.028500px;}
.y10{bottom:1185.628500px;}
.yf{bottom:1207.228500px;}
.h12{height:18.165000px;}
.he{height:18.180000px;}
.h1c{height:18.202500px;}
.h15{height:18.210000px;}
.h11{height:18.345000px;}
.hd{height:18.360000px;}
.h10{height:18.390000px;}
.h18{height:22.485000px;}
.h17{height:22.530000px;}
.h1e{height:22.845000px;}
.h22{height:22.860000px;}
.h20{height:22.882500px;}
.h1f{height:23.025000px;}
.h21{height:23.040000px;}
.h23{height:27.345000px;}
.h25{height:27.360000px;}
.h24{height:27.540000px;}
.h13{height:28.968750px;}
.h4{height:33.603750px;}
.h1d{height:44.088750px;}
.h19{height:48.029766px;}
.h1a{height:48.088125px;}
.h6{height:51.679688px;}
.h1b{height:52.128281px;}
.hc{height:52.260820px;}
.h8{height:53.237812px;}
.h5{height:53.302500px;}
.hf{height:54.881016px;}
.h7{height:57.927656px;}
.hb{height:58.975137px;}
.h16{height:60.279609px;}
.h3{height:63.843750px;}
.h2{height:64.249453px;}
.ha{height:1188.000000px;}
.h14{height:1262.864960px;}
.h9{height:1262.865000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:31.500000px;}
.w6{width:32.925000px;}
.wf{width:78.480000px;}
.wc{width:78.825000px;}
.wb{width:79.056000px;}
.w10{width:91.800000px;}
.w13{width:91.821000px;}
.w11{width:91.836000px;}
.wd{width:97.005000px;}
.w12{width:105.465000px;}
.w4{width:120.096000px;}
.w16{width:138.276000px;}
.w19{width:148.851000px;}
.w1b{width:159.510000px;}
.w17{width:170.085000px;}
.w1a{width:170.115000px;}
.we{width:178.401000px;}
.w15{width:180.735000px;}
.w3{width:194.415000px;}
.w7{width:200.715000px;}
.wa{width:212.595000px;}
.w5{width:314.520000px;}
.w9{width:319.035000px;}
.w18{width:488.580000px;}
.w14{width:637.830000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.085000px;}
.x18{left:9.705000px;}
.x54{left:11.700000px;}
.x23{left:12.780000px;}
.x56{left:14.025000px;}
.x52{left:16.005000px;}
.x14{left:17.265000px;}
.x2e{left:20.685000px;}
.x21{left:22.320000px;}
.x1f{left:24.285000px;}
.x31{left:25.920000px;}
.x9{left:27.000000px;}
.x2f{left:28.605000px;}
.x1d{left:30.420000px;}
.x27{left:31.680000px;}
.x43{left:33.105000px;}
.x22{left:35.085000px;}
.x2d{left:36.900000px;}
.x3{left:38.244000px;}
.x32{left:39.405000px;}
.x11{left:42.150000px;}
.x33{left:43.185000px;}
.x2b{left:45.165000px;}
.xf{left:46.650000px;}
.x10{left:50.430000px;}
.x46{left:55.800000px;}
.x40{left:57.405000px;}
.x45{left:59.580000px;}
.x3b{left:66.045000px;}
.x3a{left:68.025000px;}
.x34{left:70.005000px;}
.x47{left:71.625000px;}
.x3d{left:73.785000px;}
.xa{left:75.217500px;}
.x35{left:78.285000px;}
.x38{left:80.085000px;}
.x37{left:82.065000px;}
.x8{left:83.677500px;}
.x25{left:89.085000px;}
.x6{left:92.137500px;}
.x7{left:100.656000px;}
.x50{left:121.725000px;}
.x1{left:123.831000px;}
.x5{left:127.656000px;}
.x2{left:129.051000px;}
.x39{left:139.125000px;}
.x3c{left:142.725000px;}
.x13{left:154.125000px;}
.x4f{left:158.070000px;}
.x44{left:163.650000px;}
.xb{left:168.330000px;}
.x24{left:171.930000px;}
.x36{left:182.550000px;}
.x15{left:187.065000px;}
.x3f{left:202.005000px;}
.x1b{left:212.805000px;}
.x1a{left:229.890000px;}
.x30{left:249.690000px;}
.x51{left:270.585000px;}
.x4c{left:286.590000px;}
.xc{left:289.305000px;}
.x4b{left:298.110000px;}
.x19{left:301.575000px;}
.x26{left:306.075000px;}
.x4e{left:318.315000px;}
.x4a{left:342.975000px;}
.x41{left:382.755000px;}
.x28{left:384.555000px;}
.x16{left:388.515000px;}
.x17{left:420.015000px;}
.x1c{left:425.415000px;}
.x49{left:437.115000px;}
.x4d{left:438.195000px;}
.x53{left:440.715000px;}
.x48{left:446.475000px;}
.x29{left:476.355000px;}
.xe{left:483.735000px;}
.x1e{left:504.480000px;}
.x42{left:521.040000px;}
.x2a{left:568.200000px;}
.x20{left:583.320000px;}
.x55{left:600.240000px;}
.x2c{left:673.680000px;}
.x3e{left:748.770000px;}
.x4{left:757.230000px;}
.x12{left:765.510000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v5{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.280000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.280000pt;}
.v9{vertical-align:13.440000pt;}
.v4{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.757333pt;}
.lsf{letter-spacing:-0.741333pt;}
.ls30{letter-spacing:-0.709333pt;}
.ls2a{letter-spacing:-0.682667pt;}
.lsc{letter-spacing:-0.661333pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.624000pt;}
.ls11{letter-spacing:-0.522133pt;}
.ls36{letter-spacing:-0.412267pt;}
.ls33{letter-spacing:-0.325333pt;}
.ls32{letter-spacing:-0.309867pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls37{letter-spacing:-0.222933pt;}
.ls29{letter-spacing:-0.212267pt;}
.ls1c{letter-spacing:-0.202133pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.153067pt;}
.ls2c{letter-spacing:-0.146133pt;}
.lsb{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.102400pt;}
.ls8{letter-spacing:-0.069472pt;}
.ls1b{letter-spacing:-0.069333pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.043733pt;}
.ls17{letter-spacing:-0.043520pt;}
.ls1d{letter-spacing:-0.023040pt;}
.lsa{letter-spacing:-0.022933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009173pt;}
.ls1e{letter-spacing:0.017920pt;}
.ls2f{letter-spacing:0.053867pt;}
.ls18{letter-spacing:0.061440pt;}
.ls25{letter-spacing:0.069333pt;}
.ls2b{letter-spacing:0.079467pt;}
.ls5{letter-spacing:0.080000pt;}
.ls34{letter-spacing:0.117760pt;}
.ls10{letter-spacing:0.117867pt;}
.ls31{letter-spacing:0.125333pt;}
.ls2e{letter-spacing:0.133333pt;}
.ls28{letter-spacing:0.140800pt;}
.ls2{letter-spacing:0.186027pt;}
.ls20{letter-spacing:0.186133pt;}
.ls1f{letter-spacing:0.186240pt;}
.ls35{letter-spacing:0.224427pt;}
.ls7{letter-spacing:0.227733pt;}
.ls22{letter-spacing:0.244267pt;}
.ls2d{letter-spacing:0.314667pt;}
.ls21{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.317440pt;}
.ls1{letter-spacing:0.327040pt;}
.ls19{letter-spacing:0.330133pt;}
.ls27{letter-spacing:0.348160pt;}
.ls12{letter-spacing:0.398080pt;}
.ls26{letter-spacing:7.813120pt;}
.ws0{word-spacing:-16.922880pt;}
.ws3{word-spacing:-14.464000pt;}
.ws35{word-spacing:-13.637013pt;}
.ws47{word-spacing:-13.621547pt;}
.ws33{word-spacing:-13.534613pt;}
.ws42{word-spacing:-13.447680pt;}
.ws48{word-spacing:-13.432213pt;}
.ws2f{word-spacing:-13.424747pt;}
.ws45{word-spacing:-13.386347pt;}
.ws40{word-spacing:-13.376213pt;}
.ws4b{word-spacing:-13.360747pt;}
.ws3b{word-spacing:-13.324800pt;}
.ws1{word-spacing:-13.306880pt;}
.ws2a{word-spacing:-13.283947pt;}
.ws3a{word-spacing:-13.283840pt;}
.ws41{word-spacing:-13.263360pt;}
.ws38{word-spacing:-13.237547pt;}
.ws2c{word-spacing:-13.204480pt;}
.ws46{word-spacing:-13.160747pt;}
.ws43{word-spacing:-13.114880pt;}
.ws39{word-spacing:-13.104747pt;}
.ws44{word-spacing:-13.094613pt;}
.ws4d{word-spacing:-13.083947pt;}
.ws49{word-spacing:-12.997013pt;}
.ws4a{word-spacing:-12.981547pt;}
.ws4c{word-spacing:-12.894613pt;}
.ws2e{word-spacing:-12.784747pt;}
.ws36{word-spacing:-12.682880pt;}
.ws2b{word-spacing:-12.645547pt;}
.ws2d{word-spacing:-12.565547pt;}
.ws29{word-spacing:-12.474880pt;}
.ws3c{word-spacing:-12.322453pt;}
.ws3d{word-spacing:-12.249387pt;}
.ws3e{word-spacing:-12.191253pt;}
.ws31{word-spacing:-12.005120pt;}
.ws34{word-spacing:-11.953280pt;}
.ws30{word-spacing:-11.852053pt;}
.ws3f{word-spacing:-10.608000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws37{word-spacing:-7.810560pt;}
.ws32{word-spacing:-7.232000pt;}
.ws10{word-spacing:-0.901333pt;}
.ws17{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.410667pt;}
.ws26{word-spacing:-0.352000pt;}
.ws28{word-spacing:-0.294047pt;}
.wse{word-spacing:-0.293333pt;}
.ws27{word-spacing:-0.234667pt;}
.ws20{word-spacing:-0.197333pt;}
.ws1f{word-spacing:-0.176000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:0.176000pt;}
.ws16{word-spacing:0.234667pt;}
.ws18{word-spacing:0.293333pt;}
.ws15{word-spacing:0.437333pt;}
.ws1e{word-spacing:0.549333pt;}
.ws8{word-spacing:2.320000pt;}
.ws4{word-spacing:2.922667pt;}
.ws6{word-spacing:2.997333pt;}
.ws7{word-spacing:3.072000pt;}
.ws14{word-spacing:5.061333pt;}
.ws11{word-spacing:5.178667pt;}
.ws13{word-spacing:5.184000pt;}
.ws12{word-spacing:5.242667pt;}
.ws1c{word-spacing:7.594667pt;}
.ws19{word-spacing:7.712000pt;}
.ws1a{word-spacing:7.770667pt;}
.ws1b{word-spacing:8.789333pt;}
.ws9{word-spacing:8.800000pt;}
.wsb{word-spacing:8.890667pt;}
.wsc{word-spacing:9.008000pt;}
.wsd{word-spacing:9.093333pt;}
.wsa{word-spacing:9.125333pt;}
.ws25{word-spacing:10.186667pt;}
.ws21{word-spacing:10.890667pt;}
.ws24{word-spacing:10.949333pt;}
.ws23{word-spacing:11.008000pt;}
.ws22{word-spacing:11.066667pt;}
._11{margin-left:-3.992107pt;}
._c{margin-left:-2.473019pt;}
._0{margin-left:-1.186560pt;}
._7{width:0.923124pt;}
._1{width:2.249620pt;}
._8{width:3.343921pt;}
._3{width:5.057556pt;}
._4{width:6.758547pt;}
._2{width:7.844167pt;}
._9{width:8.977149pt;}
._6{width:9.867655pt;}
._5{width:10.864629pt;}
._10{width:12.301573pt;}
._d{width:14.347093pt;}
._13{width:15.485440pt;}
._19{width:16.483199pt;}
._f{width:17.428303pt;}
._b{width:18.547200pt;}
._a{width:19.548278pt;}
._14{width:21.137802pt;}
._15{width:22.030198pt;}
._18{width:25.024000pt;}
._e{width:25.965903pt;}
._1a{width:27.723947pt;}
._16{width:29.793280pt;}
._17{width:30.810453pt;}
._12{width:36.623478pt;}
._1d{width:754.831787pt;}
._1b{width:1057.545600pt;}
._1c{width:1103.626240pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.520000pt;}
.y12a{bottom:3.666667pt;}
.y7a{bottom:3.680000pt;}
.yf0{bottom:5.440000pt;}
.yf2{bottom:5.600000pt;}
.yef{bottom:7.360000pt;}
.yed{bottom:7.386667pt;}
.y156{bottom:7.506667pt;}
.y14c{bottom:7.520000pt;}
.y152{bottom:7.560000pt;}
.y14f{bottom:7.680000pt;}
.y1aa{bottom:11.666667pt;}
.y1af{bottom:11.680000pt;}
.y1ac{bottom:11.840000pt;}
.y67{bottom:29.776800pt;}
.yea{bottom:30.029333pt;}
.y66{bottom:44.820160pt;}
.ye9{bottom:45.068667pt;}
.y97{bottom:51.232000pt;}
.y65{bottom:59.943680pt;}
.ye8{bottom:60.188133pt;}
.y13{bottom:69.152000pt;}
.y64{bottom:75.067200pt;}
.ye7{bottom:75.307733pt;}
.y63{bottom:90.190720pt;}
.ye6{bottom:90.427200pt;}
.y197{bottom:100.832000pt;}
.y77{bottom:101.152000pt;}
.y62{bottom:105.314240pt;}
.ye5{bottom:105.546667pt;}
.yaa{bottom:105.952000pt;}
.y96{bottom:107.232000pt;}
.y111{bottom:108.992000pt;}
.y171{bottom:112.832000pt;}
.y117{bottom:114.432000pt;}
.y149{bottom:117.312000pt;}
.y61{bottom:120.357600pt;}
.ye4{bottom:120.586000pt;}
.y1d0{bottom:124.832000pt;}
.y196{bottom:126.432000pt;}
.y76{bottom:128.032000pt;}
.ya9{bottom:132.832000pt;}
.y95{bottom:134.106667pt;}
.y60{bottom:135.481120pt;}
.ye3{bottom:135.705600pt;}
.y110{bottom:135.706667pt;}
.y116{bottom:138.906667pt;}
.y170{bottom:139.706667pt;}
.y1a8{bottom:143.066667pt;}
.y148{bottom:144.186667pt;}
.y195{bottom:148.026667pt;}
.y5f{bottom:150.604640pt;}
.ye2{bottom:150.825067pt;}
.y1cf{bottom:151.706667pt;}
.y75{bottom:154.746667pt;}
.ya8{bottom:159.546667pt;}
.y94{bottom:160.986667pt;}
.y10f{bottom:162.586667pt;}
.y115{bottom:163.226667pt;}
.y5e{bottom:165.728160pt;}
.ye1{bottom:165.944667pt;}
.y16f{bottom:166.426667pt;}
.y1a7{bottom:169.946667pt;}
.y147{bottom:170.906667pt;}
.y1ce{bottom:178.586667pt;}
.y5d{bottom:180.851680pt;}
.ye0{bottom:181.064133pt;}
.y74{bottom:181.626667pt;}
.ya7{bottom:186.426667pt;}
.y114{bottom:187.706667pt;}
.y93{bottom:187.866667pt;}
.y10e{bottom:189.466667pt;}
.y16e{bottom:193.306667pt;}
.y5c{bottom:195.895040pt;}
.ydf{bottom:196.103467pt;}
.y1a6{bottom:196.826667pt;}
.y146{bottom:197.786667pt;}
.y1cd{bottom:205.466667pt;}
.y73{bottom:208.506667pt;}
.y5b{bottom:211.018560pt;}
.yde{bottom:211.222933pt;}
.y113{bottom:212.026667pt;}
.ya6{bottom:213.306667pt;}
.y92{bottom:214.586667pt;}
.y10d{bottom:216.346667pt;}
.y16d{bottom:220.186667pt;}
.y1a5{bottom:223.546667pt;}
.y145{bottom:224.666667pt;}
.y5a{bottom:226.142080pt;}
.ydd{bottom:226.342533pt;}
.y1cc{bottom:232.186667pt;}
.y72{bottom:235.386667pt;}
.y112{bottom:236.506667pt;}
.ya5{bottom:240.186667pt;}
.y59{bottom:241.265600pt;}
.ydc{bottom:241.462000pt;}
.y91{bottom:241.466667pt;}
.y10c{bottom:243.266667pt;}
.y16c{bottom:247.106667pt;}
.y1a4{bottom:250.466667pt;}
.y144{bottom:251.586667pt;}
.y58{bottom:256.389120pt;}
.ydb{bottom:256.581467pt;}
.y1cb{bottom:259.106667pt;}
.y189{bottom:259.426667pt;}
.y71{bottom:262.306667pt;}
.ya4{bottom:267.106667pt;}
.y90{bottom:268.386667pt;}
.y10b{bottom:270.146667pt;}
.y57{bottom:271.432480pt;}
.yda{bottom:271.620800pt;}
.y16b{bottom:273.986667pt;}
.y1a3{bottom:277.346667pt;}
.y143{bottom:278.466667pt;}
.y1ca{bottom:285.986667pt;}
.y188{bottom:286.306667pt;}
.y56{bottom:286.556000pt;}
.yd9{bottom:286.740400pt;}
.y70{bottom:289.186667pt;}
.ya3{bottom:293.986667pt;}
.y8f{bottom:295.266667pt;}
.y10a{bottom:297.026667pt;}
.y16a{bottom:300.866667pt;}
.y55{bottom:301.679520pt;}
.yd8{bottom:301.859867pt;}
.y1a2{bottom:304.226667pt;}
.y142{bottom:305.346667pt;}
.y1c9{bottom:312.866667pt;}
.y187{bottom:313.186667pt;}
.y6f{bottom:316.066667pt;}
.y54{bottom:316.803040pt;}
.yd7{bottom:316.979333pt;}
.ya2{bottom:320.866667pt;}
.y8e{bottom:322.146667pt;}
.y109{bottom:323.746667pt;}
.y169{bottom:327.746667pt;}
.y1a1{bottom:331.106667pt;}
.y53{bottom:331.926560pt;}
.yd6{bottom:332.098933pt;}
.y141{bottom:335.266667pt;}
.y8d{bottom:339.106667pt;}
.y1c8{bottom:339.746667pt;}
.y186{bottom:340.066667pt;}
.y8c{bottom:342.466667pt;}
.y6e{bottom:342.786667pt;}
.y52{bottom:347.050080pt;}
.yd5{bottom:347.218400pt;}
.ya1{bottom:347.586667pt;}
.y108{bottom:350.626667pt;}
.y140{bottom:352.386667pt;}
.y8b{bottom:353.826667pt;}
.y168{bottom:354.466667pt;}
.y8a{bottom:357.186667pt;}
.y1a0{bottom:357.986667pt;}
.y51{bottom:362.093440pt;}
.yd4{bottom:362.257733pt;}
.y194{bottom:363.906667pt;}
.y1c7{bottom:366.626667pt;}
.y13f{bottom:366.946667pt;}
.y89{bottom:368.546667pt;}
.y6d{bottom:369.666667pt;}
.y88{bottom:371.906667pt;}
.ya0{bottom:374.466667pt;}
.y50{bottom:377.216960pt;}
.yd3{bottom:377.377333pt;}
.y107{bottom:377.506667pt;}
.y87{bottom:380.546667pt;}
.y167{bottom:381.346667pt;}
.y13e{bottom:381.666667pt;}
.y19f{bottom:384.706667pt;}
.y13d{bottom:385.026667pt;}
.y4f{bottom:392.340480pt;}
.yd2{bottom:392.496800pt;}
.y1c6{bottom:393.506667pt;}
.y13c{bottom:393.666667pt;}
.y6c{bottom:396.546667pt;}
.y86{bottom:397.506667pt;}
.y9f{bottom:401.346667pt;}
.y106{bottom:404.386667pt;}
.y4e{bottom:407.464000pt;}
.yd1{bottom:407.616267pt;}
.y166{bottom:408.226667pt;}
.y13b{bottom:410.626667pt;}
.y19e{bottom:411.586667pt;}
.y85{bottom:414.306667pt;}
.y1c5{bottom:420.226667pt;}
.y185{bottom:420.546667pt;}
.y4d{bottom:422.587520pt;}
.yd0{bottom:422.735867pt;}
.y6b{bottom:423.426667pt;}
.y9e{bottom:426.946667pt;}
.y13a{bottom:427.586667pt;}
.y84{bottom:431.266667pt;}
.y165{bottom:435.106667pt;}
.y4c{bottom:437.630880pt;}
.ycf{bottom:437.775200pt;}
.y19d{bottom:438.466667pt;}
.y139{bottom:444.546667pt;}
.y1c4{bottom:447.106667pt;}
.y184{bottom:447.426667pt;}
.y83{bottom:448.226667pt;}
.y6a{bottom:450.306667pt;}
.y4b{bottom:452.754400pt;}
.yce{bottom:452.894667pt;}
.y105{bottom:458.146667pt;}
.y17d{bottom:460.226667pt;}
.y138{bottom:461.346667pt;}
.y164{bottom:461.986667pt;}
.y82{bottom:465.186667pt;}
.y19c{bottom:465.346667pt;}
.y4a{bottom:467.877920pt;}
.ycd{bottom:468.014267pt;}
.y1c3{bottom:473.986667pt;}
.y183{bottom:474.306667pt;}
.y69{bottom:477.186667pt;}
.y137{bottom:478.306667pt;}
.y81{bottom:482.146667pt;}
.y49{bottom:483.001440pt;}
.ycc{bottom:483.133733pt;}
.y104{bottom:484.866667pt;}
.y17c{bottom:487.106667pt;}
.y163{bottom:488.866667pt;}
.y19b{bottom:492.226667pt;}
.y136{bottom:495.293333pt;}
.y48{bottom:498.124960pt;}
.ycb{bottom:498.253200pt;}
.y80{bottom:499.133333pt;}
.y1c2{bottom:500.893333pt;}
.y182{bottom:501.213333pt;}
.y68{bottom:503.933333pt;}
.y103{bottom:511.773333pt;}
.y135{bottom:512.253333pt;}
.y47{bottom:513.168320pt;}
.yca{bottom:513.292533pt;}
.y17b{bottom:514.013333pt;}
.y162{bottom:515.613333pt;}
.y9d{bottom:515.933333pt;}
.y7f{bottom:516.093333pt;}
.y19a{bottom:519.133333pt;}
.y1c1{bottom:527.773333pt;}
.y181{bottom:528.093333pt;}
.y46{bottom:528.291840pt;}
.yc9{bottom:528.412133pt;}
.y134{bottom:529.213333pt;}
.y26{bottom:530.813333pt;}
.y9c{bottom:532.893333pt;}
.y7e{bottom:533.053333pt;}
.y161{bottom:537.053333pt;}
.ye{bottom:537.236000pt;}
.y102{bottom:538.653333pt;}
.y17a{bottom:540.733333pt;}
.y45{bottom:543.415360pt;}
.yc8{bottom:543.531600pt;}
.y133{bottom:546.173333pt;}
.y199{bottom:549.053333pt;}
.y9b{bottom:549.853333pt;}
.y7d{bottom:550.013333pt;}
.y160{bottom:553.053333pt;}
.y1c0{bottom:554.653333pt;}
.y180{bottom:554.973333pt;}
.y15f{bottom:556.413333pt;}
.y25{bottom:557.693333pt;}
.y44{bottom:558.538880pt;}
.yc7{bottom:558.651067pt;}
.y132{bottom:563.133333pt;}
.y1b2{bottom:563.453333pt;}
.y101{bottom:565.533333pt;}
.y9a{bottom:566.813333pt;}
.y7b{bottom:566.973333pt;}
.y179{bottom:567.613333pt;}
.y15e{bottom:567.773333pt;}
.y15d{bottom:571.133333pt;}
.y43{bottom:573.662400pt;}
.yc6{bottom:573.770667pt;}
.y131{bottom:580.093333pt;}
.y17f{bottom:580.413333pt;}
.y1bf{bottom:581.373333pt;}
.y15c{bottom:582.333333pt;}
.y79{bottom:583.773333pt;}
.y24{bottom:584.573333pt;}
.y193{bottom:584.893333pt;}
.y15b{bottom:585.693333pt;}
.y1b1{bottom:588.573333pt;}
.y42{bottom:588.705760pt;}
.yc5{bottom:588.810000pt;}
.yd{bottom:590.836000pt;}
.y100{bottom:592.413333pt;}
.y15a{bottom:594.333333pt;}
.y178{bottom:594.493333pt;}
.y130{bottom:597.053333pt;}
.y99{bottom:600.733333pt;}
.y17e{bottom:602.173333pt;}
.y41{bottom:603.829280pt;}
.yc4{bottom:603.929467pt;}
.y1be{bottom:608.253333pt;}
.y23{bottom:611.453333pt;}
.y192{bottom:611.773333pt;}
.y78{bottom:612.573333pt;}
.y1b0{bottom:613.693333pt;}
.y12f{bottom:613.853333pt;}
.y159{bottom:615.453333pt;}
.yc{bottom:617.716000pt;}
.y40{bottom:618.952800pt;}
.yc3{bottom:619.048933pt;}
.yff{bottom:619.293333pt;}
.y177{bottom:621.373333pt;}
.y98{bottom:626.653333pt;}
.y12e{bottom:630.813333pt;}
.y3f{bottom:634.076320pt;}
.yc2{bottom:634.168533pt;}
.y1bd{bottom:635.133333pt;}
.y158{bottom:636.413333pt;}
.y22{bottom:638.333333pt;}
.y191{bottom:638.653333pt;}
.y1ae{bottom:638.813333pt;}
.yb{bottom:642.148000pt;}
.yfe{bottom:646.173333pt;}
.y12d{bottom:647.773333pt;}
.y176{bottom:648.253333pt;}
.y3e{bottom:649.199840pt;}
.yc1{bottom:649.288000pt;}
.y157{bottom:657.373333pt;}
.y1bc{bottom:662.013333pt;}
.ya{bottom:662.348000pt;}
.y1ad{bottom:663.773333pt;}
.y3d{bottom:664.243200pt;}
.yc0{bottom:664.328667pt;}
.y12c{bottom:664.733333pt;}
.y21{bottom:665.213333pt;}
.y190{bottom:665.533333pt;}
.yfd{bottom:672.893333pt;}
.y175{bottom:675.133333pt;}
.y155{bottom:678.506667pt;}
.y3c{bottom:679.366720pt;}
.ybf{bottom:679.448267pt;}
.y12b{bottom:681.693333pt;}
.y1ab{bottom:688.893333pt;}
.y9{bottom:689.228000pt;}
.y20{bottom:691.933333pt;}
.y18f{bottom:692.413333pt;}
.y3b{bottom:694.490240pt;}
.ybe{bottom:694.567733pt;}
.y129{bottom:698.666667pt;}
.y154{bottom:699.453333pt;}
.yfc{bottom:699.773333pt;}
.y174{bottom:702.013333pt;}
.y3a{bottom:709.613760pt;}
.ybd{bottom:709.687200pt;}
.y8{bottom:713.660000pt;}
.y1a9{bottom:714.026667pt;}
.y128{bottom:715.613333pt;}
.y1bb{bottom:715.773333pt;}
.y1f{bottom:718.813333pt;}
.y18e{bottom:719.133333pt;}
.y153{bottom:720.413333pt;}
.y39{bottom:724.737280pt;}
.ybc{bottom:724.806800pt;}
.yfb{bottom:726.653333pt;}
.y173{bottom:727.453333pt;}
.y127{bottom:732.573333pt;}
.y7{bottom:733.820000pt;}
.y38{bottom:739.780640pt;}
.ybb{bottom:739.846133pt;}
.y151{bottom:741.533333pt;}
.y1ba{bottom:742.653333pt;}
.y1e{bottom:745.733333pt;}
.y18d{bottom:746.053333pt;}
.y198{bottom:746.693333pt;}
.y172{bottom:749.253333pt;}
.y126{bottom:749.573333pt;}
.yfa{bottom:753.573333pt;}
.y37{bottom:754.904160pt;}
.yba{bottom:754.965600pt;}
.y6{bottom:760.700000pt;}
.y150{bottom:762.533333pt;}
.y125{bottom:766.533333pt;}
.y1b9{bottom:769.413333pt;}
.y36{bottom:770.027680pt;}
.yb9{bottom:770.085067pt;}
.y1d{bottom:772.613333pt;}
.y18c{bottom:772.933333pt;}
.yf9{bottom:780.453333pt;}
.y124{bottom:783.333333pt;}
.y14e{bottom:783.493333pt;}
.y5{bottom:785.132000pt;}
.y35{bottom:785.151200pt;}
.yb8{bottom:785.204667pt;}
.y1b8{bottom:796.293333pt;}
.y18b{bottom:798.533333pt;}
.y1c{bottom:799.493333pt;}
.y34{bottom:800.274720pt;}
.y123{bottom:800.293333pt;}
.yb7{bottom:800.324133pt;}
.y14d{bottom:804.613333pt;}
.y4{bottom:804.976000pt;}
.yf8{bottom:807.333333pt;}
.y33{bottom:815.318080pt;}
.yb6{bottom:815.364800pt;}
.y122{bottom:817.253333pt;}
.y18a{bottom:820.293333pt;}
.y1b7{bottom:823.173333pt;}
.y14b{bottom:825.573333pt;}
.y1b{bottom:826.373333pt;}
.y32{bottom:830.441600pt;}
.yb5{bottom:830.484400pt;}
.y3{bottom:831.856000pt;}
.yf7{bottom:834.053333pt;}
.y121{bottom:834.213333pt;}
.y31{bottom:845.565120pt;}
.yb4{bottom:845.603867pt;}
.y1b6{bottom:850.053333pt;}
.y120{bottom:851.173333pt;}
.y1a{bottom:853.253333pt;}
.y14a{bottom:854.213333pt;}
.y30{bottom:860.688640pt;}
.yb3{bottom:860.723333pt;}
.yf6{bottom:860.933333pt;}
.y2{bottom:862.252000pt;}
.y11f{bottom:868.133333pt;}
.y2f{bottom:875.812160pt;}
.yb2{bottom:875.842933pt;}
.y1b5{bottom:876.933333pt;}
.y19{bottom:879.973333pt;}
.y11e{bottom:885.093333pt;}
.yf5{bottom:887.813333pt;}
.y2e{bottom:890.855520pt;}
.yb1{bottom:890.883600pt;}
.y1{bottom:896.492000pt;}
.y11d{bottom:902.053333pt;}
.y1b4{bottom:903.813333pt;}
.y2d{bottom:905.979040pt;}
.yb0{bottom:906.003067pt;}
.y18{bottom:906.853333pt;}
.yf4{bottom:914.693333pt;}
.y11c{bottom:919.013333pt;}
.y2c{bottom:921.102560pt;}
.yaf{bottom:921.122533pt;}
.yf3{bottom:929.093333pt;}
.y1b3{bottom:930.533333pt;}
.y17{bottom:933.733333pt;}
.y11b{bottom:935.813333pt;}
.y2b{bottom:936.226080pt;}
.yae{bottom:936.242133pt;}
.yf1{bottom:949.733333pt;}
.y2a{bottom:951.349600pt;}
.yad{bottom:951.361600pt;}
.y11a{bottom:952.773333pt;}
.y16{bottom:960.613333pt;}
.y29{bottom:966.392960pt;}
.yac{bottom:966.400933pt;}
.y119{bottom:969.733333pt;}
.yee{bottom:970.533333pt;}
.y28{bottom:981.516480pt;}
.yab{bottom:981.520533pt;}
.y118{bottom:986.693333pt;}
.y15{bottom:987.493333pt;}
.yec{bottom:991.173333pt;}
.y27{bottom:996.640000pt;}
.y14{bottom:1014.400000pt;}
.y12{bottom:1015.492000pt;}
.yeb{bottom:1015.520000pt;}
.y11{bottom:1034.692000pt;}
.y10{bottom:1053.892000pt;}
.yf{bottom:1073.092000pt;}
.h12{height:16.146667pt;}
.he{height:16.160000pt;}
.h1c{height:16.180000pt;}
.h15{height:16.186667pt;}
.h11{height:16.306667pt;}
.hd{height:16.320000pt;}
.h10{height:16.346667pt;}
.h18{height:19.986667pt;}
.h17{height:20.026667pt;}
.h1e{height:20.306667pt;}
.h22{height:20.320000pt;}
.h20{height:20.340000pt;}
.h1f{height:20.466667pt;}
.h21{height:20.480000pt;}
.h23{height:24.306667pt;}
.h25{height:24.320000pt;}
.h24{height:24.480000pt;}
.h13{height:25.750000pt;}
.h4{height:29.870000pt;}
.h1d{height:39.190000pt;}
.h19{height:42.693125pt;}
.h1a{height:42.745000pt;}
.h6{height:45.937500pt;}
.h1b{height:46.336250pt;}
.hc{height:46.454062pt;}
.h8{height:47.322500pt;}
.h5{height:47.380000pt;}
.hf{height:48.783125pt;}
.h7{height:51.491250pt;}
.hb{height:52.422344pt;}
.h16{height:53.581875pt;}
.h3{height:56.750000pt;}
.h2{height:57.110625pt;}
.ha{height:1056.000000pt;}
.h14{height:1122.546631pt;}
.h9{height:1122.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:28.000000pt;}
.w6{width:29.266667pt;}
.wf{width:69.760000pt;}
.wc{width:70.066667pt;}
.wb{width:70.272000pt;}
.w10{width:81.600000pt;}
.w13{width:81.618667pt;}
.w11{width:81.632000pt;}
.wd{width:86.226667pt;}
.w12{width:93.746667pt;}
.w4{width:106.752000pt;}
.w16{width:122.912000pt;}
.w19{width:132.312000pt;}
.w1b{width:141.786667pt;}
.w17{width:151.186667pt;}
.w1a{width:151.213333pt;}
.we{width:158.578667pt;}
.w15{width:160.653333pt;}
.w3{width:172.813333pt;}
.w7{width:178.413333pt;}
.wa{width:188.973333pt;}
.w5{width:279.573333pt;}
.w9{width:283.586667pt;}
.w18{width:434.293333pt;}
.w14{width:566.960000pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.186667pt;}
.x18{left:8.626667pt;}
.x54{left:10.400000pt;}
.x23{left:11.360000pt;}
.x56{left:12.466667pt;}
.x52{left:14.226667pt;}
.x14{left:15.346667pt;}
.x2e{left:18.386667pt;}
.x21{left:19.840000pt;}
.x1f{left:21.586667pt;}
.x31{left:23.040000pt;}
.x9{left:24.000000pt;}
.x2f{left:25.426667pt;}
.x1d{left:27.040000pt;}
.x27{left:28.160000pt;}
.x43{left:29.426667pt;}
.x22{left:31.186667pt;}
.x2d{left:32.800000pt;}
.x3{left:33.994667pt;}
.x32{left:35.026667pt;}
.x11{left:37.466667pt;}
.x33{left:38.386667pt;}
.x2b{left:40.146667pt;}
.xf{left:41.466667pt;}
.x10{left:44.826667pt;}
.x46{left:49.600000pt;}
.x40{left:51.026667pt;}
.x45{left:52.960000pt;}
.x3b{left:58.706667pt;}
.x3a{left:60.466667pt;}
.x34{left:62.226667pt;}
.x47{left:63.666667pt;}
.x3d{left:65.586667pt;}
.xa{left:66.860000pt;}
.x35{left:69.586667pt;}
.x38{left:71.186667pt;}
.x37{left:72.946667pt;}
.x8{left:74.380000pt;}
.x25{left:79.186667pt;}
.x6{left:81.900000pt;}
.x7{left:89.472000pt;}
.x50{left:108.200000pt;}
.x1{left:110.072000pt;}
.x5{left:113.472000pt;}
.x2{left:114.712000pt;}
.x39{left:123.666667pt;}
.x3c{left:126.866667pt;}
.x13{left:137.000000pt;}
.x4f{left:140.506667pt;}
.x44{left:145.466667pt;}
.xb{left:149.626667pt;}
.x24{left:152.826667pt;}
.x36{left:162.266667pt;}
.x15{left:166.280000pt;}
.x3f{left:179.560000pt;}
.x1b{left:189.160000pt;}
.x1a{left:204.346667pt;}
.x30{left:221.946667pt;}
.x51{left:240.520000pt;}
.x4c{left:254.746667pt;}
.xc{left:257.160000pt;}
.x4b{left:264.986667pt;}
.x19{left:268.066667pt;}
.x26{left:272.066667pt;}
.x4e{left:282.946667pt;}
.x4a{left:304.866667pt;}
.x41{left:340.226667pt;}
.x28{left:341.826667pt;}
.x16{left:345.346667pt;}
.x17{left:373.346667pt;}
.x1c{left:378.146667pt;}
.x49{left:388.546667pt;}
.x4d{left:389.506667pt;}
.x53{left:391.746667pt;}
.x48{left:396.866667pt;}
.x29{left:423.426667pt;}
.xe{left:429.986667pt;}
.x1e{left:448.426667pt;}
.x42{left:463.146667pt;}
.x2a{left:505.066667pt;}
.x20{left:518.506667pt;}
.x55{left:533.546667pt;}
.x2c{left:598.826667pt;}
.x3e{left:665.573333pt;}
.x4{left:673.093333pt;}
.x12{left:680.453333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  