
    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_b2afb8358f3d630b62c5c0b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a9c01018a32ac22b3dad36ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f3be2fc9762dd4ed53db5a5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_4ad64ed0bf06c035c8c41c6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_496ff61cafba531e0afe9654.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_a69782f206c0138a9f30bf28.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_6e331edfdcb9bbd23d7a5231.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d53c48233453d6730930cdd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b74e09b355a5a4a9d67f0abb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_a3dbedcd8382db3bb13b37b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_9f7fe82f1fe7a548ebf720e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_583f14c1f0a32f6f6a902b75.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_90ea35759a0193f0fe0ec9d5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_55ab857adb7fd13eaef8c072.woff2')format("woff");}.fff{font-family:fff;line-height:3.716797;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);}
.vc{vertical-align:-80.640000px;}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.ve{vertical-align:-13.680000px;}
.v4{vertical-align:-12.240000px;}
.v9{vertical-align:-2.880000px;}
.vd{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.v5{vertical-align:12.240000px;}
.vf{vertical-align:13.680000px;}
.vb{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:74.280000px;}
.v7{vertical-align:154.920000px;}
.v8{vertical-align:162.840000px;}
.ls37{letter-spacing:-1.134000px;}
.ls48{letter-spacing:-0.936000px;}
.ls42{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.322800px;}
.ls46{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.229800px;}
.ls33{letter-spacing:-0.200400px;}
.ls3{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.166200px;}
.lse{letter-spacing:-0.085200px;}
.ls13{letter-spacing:-0.072000px;}
.ls34{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls36{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.059040px;}
.ls11{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.132600px;}
.ls45{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.155400px;}
.ls6{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.187200px;}
.ls31{letter-spacing:0.189600px;}
.ls30{letter-spacing:0.205800px;}
.ls47{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.229200px;}
.ls3a{letter-spacing:0.258000px;}
.ls39{letter-spacing:0.259800px;}
.ls3b{letter-spacing:0.262080px;}
.ls27{letter-spacing:0.285120px;}
.ls1{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.372000px;}
.ls35{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.887040px;}
.ls2a{letter-spacing:1.041120px;}
.ls1e{letter-spacing:1.229760px;}
.ls2e{letter-spacing:1.308960px;}
.ls3d{letter-spacing:1.370880px;}
.lsb{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.578240px;}
.ls3f{letter-spacing:1.955520px;}
.ls23{letter-spacing:2.184480px;}
.ls2c{letter-spacing:2.202480px;}
.ls3c{letter-spacing:2.309040px;}
.ls2d{letter-spacing:2.413440px;}
.ls28{letter-spacing:2.727360px;}
.ls21{letter-spacing:2.934720px;}
.ls40{letter-spacing:2.986560px;}
.ls1c{letter-spacing:3.548160px;}
.ls16{letter-spacing:3.972960px;}
.ls1a{letter-spacing:4.152960px;}
.ls18{letter-spacing:4.268160px;}
.ls9{letter-spacing:4.320000px;}
.ls8{letter-spacing:8.640000px;}
.ls22{letter-spacing:13.965120px;}
.ls20{letter-spacing:14.598720px;}
.ls1f{letter-spacing:14.685120px;}
.ls17{letter-spacing:16.559280px;}
.ls15{letter-spacing:17.255280px;}
.ls1b{letter-spacing:17.279280px;}
.ls25{letter-spacing:17.565120px;}
.ls26{letter-spacing:18.198720px;}
.ls1d{letter-spacing:20.388960px;}
.ls14{letter-spacing:20.679840px;}
.lsa{letter-spacing:20.880000px;}
.ls19{letter-spacing:21.085920px;}
.lsc{letter-spacing:28.080000px;}
.ls7{letter-spacing:29.520000px;}
.ls2b{letter-spacing:78.492960px;}
.ls3e{letter-spacing:87.143040px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.737200px;}
.ws3{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.808440px;}
.ws20{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.999997px;}
.wsb{word-spacing:-17.928000px;}
.ws21{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.199800px;}
.ws15{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.572800px;}
.ws16{word-spacing:-13.806000px;}
.wsf{word-spacing:-13.336800px;}
.wsc{word-spacing:-13.147200px;}
.wsd{word-spacing:-12.981000px;}
.ws7{word-spacing:-12.060000px;}
.ws1f{word-spacing:-10.984800px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws1d{word-spacing:-10.440000px;}
.ws1c{word-spacing:-9.445200px;}
.ws10{word-spacing:-9.416400px;}
.wse{word-spacing:-9.393000px;}
.ws18{word-spacing:-9.187200px;}
.ws11{word-spacing:-8.986800px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:21.323160px;}
.ws1b{word-spacing:21.588480px;}
.ws1e{word-spacing:23.028840px;}
._36{margin-left:-32.509440px;}
._31{margin-left:-13.734960px;}
._3{margin-left:-11.119680px;}
._32{margin-left:-6.942240px;}
._4{margin-left:-4.633200px;}
._2{margin-left:-3.215040px;}
._1{margin-left:-1.347840px;}
._0{width:1.080000px;}
._5{width:2.203200px;}
._b{width:3.510720px;}
._10{width:4.656960px;}
._19{width:6.120000px;}
._7{width:7.332480px;}
._6{width:8.544960px;}
._f{width:9.671040px;}
._1e{width:11.132640px;}
._8{width:12.502080px;}
._9{width:13.556160px;}
._c{width:14.904000px;}
._18{width:16.128000px;}
._20{width:19.100160px;}
._12{width:20.335680px;}
._27{width:21.484800px;}
._2f{width:22.507200px;}
._11{width:23.515200px;}
._1a{width:25.560000px;}
._35{width:26.653454px;}
._14{width:27.802080px;}
._a{width:29.154240px;}
._d{width:31.861440px;}
._e{width:32.967360px;}
._21{width:34.058880px;}
._2b{width:35.199360px;}
._15{width:36.365760px;}
._16{width:37.413120px;}
._1f{width:38.643840px;}
._1c{width:39.888000px;}
._1d{width:40.968000px;}
._3a{width:42.984000px;}
._39{width:45.720000px;}
._30{width:46.944000px;}
._2e{width:47.952000px;}
._13{width:49.481280px;}
._2d{width:50.760000px;}
._2c{width:51.768000px;}
._29{width:53.352000px;}
._2a{width:54.864000px;}
._26{width:56.508480px;}
._25{width:57.755520px;}
._1b{width:59.544000px;}
._17{width:61.632000px;}
._33{width:63.216000px;}
._34{width:64.584000px;}
._23{width:67.080000px;}
._24{width:68.376000px;}
._22{width:72.720000px;}
._28{width:77.904000px;}
._37{width:511.167360px;}
._38{width:2102.856000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:18.000000px;}
.fs8{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:6.120000px;}
.yf7{bottom:6.300000px;}
.y125{bottom:6.480000px;}
.y109{bottom:6.660000px;}
.y120{bottom:6.840000px;}
.y11e{bottom:7.020000px;}
.y126{bottom:7.200000px;}
.y145{bottom:8.100000px;}
.y144{bottom:8.640000px;}
.y143{bottom:9.180000px;}
.y10c{bottom:15.840000px;}
.yf5{bottom:16.020000px;}
.y112{bottom:16.200000px;}
.y10d{bottom:16.380000px;}
.y10a{bottom:16.560000px;}
.y10e{bottom:16.740000px;}
.y13b{bottom:17.100000px;}
.y13c{bottom:17.640000px;}
.y13d{bottom:17.820000px;}
.y147{bottom:18.540000px;}
.y123{bottom:18.720000px;}
.y110{bottom:25.740000px;}
.yf0{bottom:25.920000px;}
.y100{bottom:26.100000px;}
.y108{bottom:26.460000px;}
.y135{bottom:28.620000px;}
.y13f{bottom:28.845000px;}
.yf4{bottom:35.820000px;}
.y106{bottom:36.000000px;}
.y104{bottom:36.360000px;}
.y105{bottom:36.720000px;}
.y136{bottom:39.600000px;}
.yfb{bottom:45.540000px;}
.yed{bottom:45.720000px;}
.yff{bottom:45.900000px;}
.yfc{bottom:46.080000px;}
.y101{bottom:46.260000px;}
.y30{bottom:47.880000px;}
.y134{bottom:50.400000px;}
.y14c{bottom:50.580000px;}
.yf3{bottom:55.620000px;}
.y14e{bottom:61.380000px;}
.y55{bottom:62.460000px;}
.yef{bottom:65.520000px;}
.yfe{bottom:65.700000px;}
.y2f{bottom:72.000000px;}
.y133{bottom:72.180000px;}
.y14b{bottom:72.390000px;}
.yf2{bottom:75.600000px;}
.y14d{bottom:83.190000px;}
.yee{bottom:85.500000px;}
.y17d{bottom:89.820000px;}
.y119{bottom:91.260000px;}
.y14a{bottom:94.170000px;}
.y2e{bottom:95.760000px;}
.y85{bottom:96.120000px;}
.y131{bottom:98.280000px;}
.y149{bottom:108.900000px;}
.y176{bottom:111.600000px;}
.y17c{bottom:113.580000px;}
.yb3{bottom:113.940000px;}
.y52{bottom:114.660000px;}
.y118{bottom:115.020000px;}
.y84{bottom:119.880000px;}
.y2d{bottom:122.220000px;}
.y175{bottom:135.360000px;}
.y51{bottom:135.900000px;}
.y17b{bottom:137.340000px;}
.yb2{bottom:137.700000px;}
.ye9{bottom:138.780000px;}
.y130{bottom:141.840000px;}
.y83{bottom:143.640000px;}
.ycb{bottom:145.980000px;}
.y2c{bottom:146.160000px;}
.y174{bottom:159.120000px;}
.y17a{bottom:161.100000px;}
.yb1{bottom:161.460000px;}
.ye8{bottom:162.540000px;}
.y12f{bottom:163.800000px;}
.y87{bottom:167.220000px;}
.y82{bottom:167.580000px;}
.yca{bottom:169.740000px;}
.y2b{bottom:169.920000px;}
.y117{bottom:174.780000px;}
.y50{bottom:178.380000px;}
.y173{bottom:182.910000px;}
.y179{bottom:185.070000px;}
.yb0{bottom:185.430000px;}
.y12e{bottom:185.610000px;}
.ye7{bottom:186.510000px;}
.y81{bottom:191.370000px;}
.y2a{bottom:193.680000px;}
.yc9{bottom:193.710000px;}
.y116{bottom:198.570000px;}
.y4f{bottom:199.800000px;}
.y172{bottom:206.850000px;}
.y12d{bottom:207.030000px;}
.y19e{bottom:208.830000px;}
.yaf{bottom:209.190000px;}
.ye6{bottom:210.270000px;}
.y80{bottom:215.130000px;}
.y29{bottom:217.440000px;}
.yc8{bottom:217.470000px;}
.y115{bottom:222.510000px;}
.y157{bottom:223.770000px;}
.y4e{bottom:225.360000px;}
.y171{bottom:230.610000px;}
.y19d{bottom:232.590000px;}
.yae{bottom:232.950000px;}
.ye5{bottom:234.390000px;}
.y7f{bottom:238.890000px;}
.yc7{bottom:241.230000px;}
.y28{bottom:241.410000px;}
.y114{bottom:246.270000px;}
.y170{bottom:254.370000px;}
.y19c{bottom:256.350000px;}
.yad{bottom:256.710000px;}
.ye4{bottom:258.330000px;}
.y7e{bottom:262.650000px;}
.yc6{bottom:264.990000px;}
.y27{bottom:265.170000px;}
.y4d{bottom:267.870000px;}
.y113{bottom:270.030000px;}
.y16f{bottom:278.130000px;}
.y19b{bottom:280.290000px;}
.yac{bottom:280.650000px;}
.ye3{bottom:282.090000px;}
.y7d{bottom:286.590000px;}
.y111{bottom:287.130000px;}
.y26{bottom:288.930000px;}
.y4c{bottom:289.290000px;}
.y16e{bottom:301.890000px;}
.y19a{bottom:304.050000px;}
.yab{bottom:304.410000px;}
.ye2{bottom:305.850000px;}
.y7c{bottom:310.350000px;}
.y25{bottom:312.690000px;}
.y4b{bottom:314.850000px;}
.y16d{bottom:325.830000px;}
.y10f{bottom:327.630000px;}
.y199{bottom:327.810000px;}
.yaa{bottom:328.170000px;}
.ye1{bottom:329.790000px;}
.y7b{bottom:334.110000px;}
.yc5{bottom:336.450000px;}
.y24{bottom:336.630000px;}
.y4a{bottom:341.490000px;}
.y16c{bottom:349.590000px;}
.y198{bottom:351.570000px;}
.ya9{bottom:351.930000px;}
.ye0{bottom:353.550000px;}
.y7a{bottom:357.870000px;}
.yc4{bottom:360.210000px;}
.y23{bottom:360.390000px;}
.y49{bottom:370.830000px;}
.y129{bottom:372.270000px;}
.y16b{bottom:373.350000px;}
.y197{bottom:375.510000px;}
.ya8{bottom:375.870000px;}
.ydf{bottom:377.310000px;}
.y79{bottom:381.450000px;}
.y86{bottom:381.810000px;}
.y22{bottom:384.150000px;}
.y10b{bottom:387.930000px;}
.y16a{bottom:397.110000px;}
.y196{bottom:399.270000px;}
.ya7{bottom:399.630000px;}
.y48{bottom:399.990000px;}
.yde{bottom:401.070000px;}
.y78{bottom:405.570000px;}
.y21{bottom:407.910000px;}
.y169{bottom:421.095000px;}
.y195{bottom:423.075000px;}
.ya6{bottom:423.435000px;}
.ydd{bottom:425.055000px;}
.y156{bottom:426.855000px;}
.y107{bottom:428.295000px;}
.y47{bottom:429.330000px;}
.y77{bottom:429.375000px;}
.yc3{bottom:431.715000px;}
.y20{bottom:431.850000px;}
.y168{bottom:444.855000px;}
.y178{bottom:446.835000px;}
.ya5{bottom:447.195000px;}
.ydc{bottom:448.815000px;}
.y12c{bottom:448.995000px;}
.y155{bottom:450.615000px;}
.y76{bottom:452.595000px;}
.yc2{bottom:455.475000px;}
.y1f{bottom:455.610000px;}
.y46{bottom:458.670000px;}
.y167{bottom:468.615000px;}
.y103{bottom:469.515000px;}
.y12b{bottom:470.775000px;}
.ya4{bottom:471.135000px;}
.ydb{bottom:472.575000px;}
.y154{bottom:474.375000px;}
.y75{bottom:474.555000px;}
.yc1{bottom:479.235000px;}
.y1e{bottom:479.415000px;}
.y45{bottom:481.395000px;}
.y128{bottom:492.375000px;}
.y12a{bottom:492.735000px;}
.y153{bottom:493.995000px;}
.y194{bottom:494.535000px;}
.ya3{bottom:494.895000px;}
.y74{bottom:496.335000px;}
.y1d{bottom:503.175000px;}
.y166{bottom:516.315000px;}
.y73{bottom:518.115000px;}
.y193{bottom:518.295000px;}
.ya2{bottom:518.655000px;}
.yda{bottom:520.275000px;}
.yc0{bottom:526.935000px;}
.y1c{bottom:527.115000px;}
.y72{bottom:539.895000px;}
.y165{bottom:540.075000px;}
.y192{bottom:542.055000px;}
.ya1{bottom:542.415000px;}
.yd9{bottom:544.035000px;}
.y102{bottom:549.615000px;}
.ybf{bottom:550.695000px;}
.y1b{bottom:550.875000px;}
.y127{bottom:551.955000px;}
.y71{bottom:561.675000px;}
.y164{bottom:563.835000px;}
.y191{bottom:565.995000px;}
.ya0{bottom:566.355000px;}
.yd8{bottom:567.795000px;}
.yfd{bottom:570.135000px;}
.ybe{bottom:574.455000px;}
.y1a{bottom:574.635000px;}
.y70{bottom:583.635000px;}
.y163{bottom:587.595000px;}
.y190{bottom:589.755000px;}
.y9f{bottom:590.115000px;}
.yd7{bottom:591.555000px;}
.y124{bottom:597.855000px;}
.y19{bottom:598.395000px;}
.y6f{bottom:605.415000px;}
.y162{bottom:611.535000px;}
.y18f{bottom:613.515000px;}
.y9e{bottom:613.875000px;}
.yd6{bottom:615.495000px;}
.y122{bottom:621.075000px;}
.ybd{bottom:622.155000px;}
.y18{bottom:622.335000px;}
.y6e{bottom:627.195000px;}
.y161{bottom:635.295000px;}
.y18e{bottom:637.275000px;}
.y9d{bottom:637.635000px;}
.yd5{bottom:639.255000px;}
.y121{bottom:643.755000px;}
.ybc{bottom:645.915000px;}
.y17{bottom:646.095000px;}
.y6d{bottom:648.975000px;}
.y44{bottom:654.555000px;}
.y160{bottom:659.085000px;}
.y18d{bottom:661.065000px;}
.y9c{bottom:661.425000px;}
.yd4{bottom:663.045000px;}
.y11f{bottom:666.285000px;}
.ybb{bottom:669.705000px;}
.y16{bottom:669.855000px;}
.yfa{bottom:670.245000px;}
.y6c{bottom:670.965000px;}
.y15f{bottom:682.845000px;}
.y152{bottom:683.565000px;}
.y43{bottom:683.715000px;}
.y18c{bottom:685.005000px;}
.y9b{bottom:685.365000px;}
.yd3{bottom:686.985000px;}
.y11d{bottom:688.785000px;}
.y6b{bottom:692.745000px;}
.y15{bottom:693.645000px;}
.y15e{bottom:706.785000px;}
.y151{bottom:707.505000px;}
.y18b{bottom:708.765000px;}
.y9a{bottom:709.125000px;}
.y42{bottom:711.645000px;}
.y6a{bottom:714.525000px;}
.y14{bottom:717.405000px;}
.y11c{bottom:718.305000px;}
.y15d{bottom:730.185000px;}
.y150{bottom:731.265000px;}
.y18a{bottom:732.525000px;}
.y99{bottom:732.885000px;}
.y148{bottom:733.965000px;}
.y41{bottom:735.405000px;}
.y69{bottom:736.305000px;}
.yba{bottom:741.165000px;}
.y13{bottom:741.345000px;}
.y14f{bottom:750.705000px;}
.y15c{bottom:754.305000px;}
.y189{bottom:756.285000px;}
.y98{bottom:756.645000px;}
.y146{bottom:757.005000px;}
.y68{bottom:758.085000px;}
.y40{bottom:759.885000px;}
.yb9{bottom:764.925000px;}
.y12{bottom:765.105000px;}
.yf9{bottom:770.145000px;}
.y15b{bottom:778.065000px;}
.y67{bottom:780.045000px;}
.y188{bottom:780.225000px;}
.y97{bottom:780.585000px;}
.y3f{bottom:784.005000px;}
.y11{bottom:788.865000px;}
.y142{bottom:801.465000px;}
.y66{bottom:801.825000px;}
.y15a{bottom:802.005000px;}
.y187{bottom:803.985000px;}
.y96{bottom:804.345000px;}
.y3e{bottom:807.765000px;}
.y10{bottom:812.625000px;}
.y159{bottom:821.445000px;}
.y65{bottom:823.605000px;}
.y141{bottom:826.485000px;}
.y186{bottom:827.745000px;}
.y95{bottom:828.105000px;}
.yf8{bottom:830.445000px;}
.y3d{bottom:832.965000px;}
.yb8{bottom:836.385000px;}
.yf{bottom:836.565000px;}
.y64{bottom:845.385000px;}
.y140{bottom:849.345000px;}
.y177{bottom:851.505000px;}
.y94{bottom:851.865000px;}
.yb7{bottom:860.145000px;}
.ye{bottom:860.325000px;}
.y3c{bottom:860.685000px;}
.y63{bottom:867.345000px;}
.yd2{bottom:871.485000px;}
.y13e{bottom:872.385000px;}
.y185{bottom:875.445000px;}
.y93{bottom:875.805000px;}
.yd{bottom:884.085000px;}
.y3b{bottom:888.225000px;}
.y62{bottom:889.125000px;}
.yf6{bottom:890.565000px;}
.y184{bottom:899.205000px;}
.y92{bottom:899.565000px;}
.yc{bottom:907.845000px;}
.yb6{bottom:907.890000px;}
.y61{bottom:910.950000px;}
.yec{bottom:911.310000px;}
.y3a{bottom:915.765000px;}
.y13a{bottom:916.890000px;}
.y183{bottom:923.010000px;}
.y91{bottom:923.370000px;}
.yb5{bottom:931.650000px;}
.yb{bottom:931.830000px;}
.y60{bottom:932.730000px;}
.y39{bottom:943.710000px;}
.y182{bottom:946.770000px;}
.y90{bottom:947.130000px;}
.yb4{bottom:951.270000px;}
.y5f{bottom:954.510000px;}
.ya{bottom:955.590000px;}
.y139{bottom:961.170000px;}
.y181{bottom:970.710000px;}
.y8f{bottom:971.070000px;}
.y38{bottom:974.670000px;}
.y5e{bottom:976.470000px;}
.y9{bottom:979.350000px;}
.y138{bottom:983.850000px;}
.y180{bottom:994.470000px;}
.y8e{bottom:994.830000px;}
.y5d{bottom:998.250000px;}
.y8{bottom:1003.110000px;}
.y137{bottom:1006.350000px;}
.y37{bottom:1007.070000px;}
.y158{bottom:1011.390000px;}
.yeb{bottom:1018.230000px;}
.y8d{bottom:1018.590000px;}
.y5c{bottom:1020.030000px;}
.y7{bottom:1027.050000px;}
.y132{bottom:1029.030000px;}
.y36{bottom:1040.010000px;}
.yea{bottom:1041.990000px;}
.y8c{bottom:1042.350000px;}
.y5b{bottom:1049.190000px;}
.y6{bottom:1050.810000px;}
.y17f{bottom:1065.930000px;}
.y8b{bottom:1066.290000px;}
.y35{bottom:1071.330000px;}
.y5a{bottom:1072.230000px;}
.y5{bottom:1074.570000px;}
.yd1{bottom:1076.910000px;}
.y59{bottom:1089.690000px;}
.y8a{bottom:1090.050000px;}
.y34{bottom:1096.890000px;}
.y4{bottom:1098.330000px;}
.yd0{bottom:1100.670000px;}
.y58{bottom:1113.450000px;}
.y89{bottom:1113.810000px;}
.y3{bottom:1122.270000px;}
.y33{bottom:1122.630000px;}
.yce{bottom:1125.150000px;}
.y57{bottom:1137.210000px;}
.y88{bottom:1137.570000px;}
.y11b{bottom:1140.630000px;}
.ycf{bottom:1143.540000px;}
.ycd{bottom:1145.520000px;}
.y2{bottom:1146.030000px;}
.y32{bottom:1147.470000px;}
.y17e{bottom:1161.180000px;}
.y56{bottom:1161.540000px;}
.y11a{bottom:1162.980000px;}
.ycc{bottom:1165.860000px;}
.y31{bottom:1169.460000px;}
.y1{bottom:1169.820000px;}
.y54{bottom:1184.580000px;}
.y53{bottom:1198.980000px;}
.h22{height:19.800000px;}
.h1f{height:20.016000px;}
.h2d{height:21.780000px;}
.h2e{height:21.816000px;}
.h2b{height:21.960000px;}
.h35{height:22.140000px;}
.h34{height:22.320000px;}
.h30{height:22.500000px;}
.h36{height:24.120000px;}
.h25{height:39.636000px;}
.h27{height:39.780000px;}
.h24{height:40.500000px;}
.h32{height:43.560000px;}
.h33{height:43.776000px;}
.h2f{height:45.720000px;}
.h12{height:47.344922px;}
.he{height:48.616875px;}
.h11{height:48.802500px;}
.h14{height:54.596250px;}
.h1e{height:58.651172px;}
.h20{height:59.400000px;}
.h26{height:59.580000px;}
.h28{height:60.226875px;}
.h16{height:63.457031px;}
.hc{height:63.632461px;}
.h13{height:64.978594px;}
.h2c{height:65.010937px;}
.h29{height:65.317500px;}
.h4{height:65.884219px;}
.h2a{height:66.757500px;}
.h15{height:70.628906px;}
.h10{height:70.664062px;}
.hf{height:71.324297px;}
.h2{height:72.562500px;}
.h5{height:73.722656px;}
.h23{height:79.380000px;}
.ha{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:86.255508px;}
.h31{height:87.120000px;}
.h9{height:93.983203px;}
.hb{height:95.245664px;}
.h1d{height:99.180000px;}
.h21{height:99.216000px;}
.h8{height:108.843750px;}
.h37{height:109.116000px;}
.h7{height:110.583984px;}
.h17{height:128.157188px;}
.h1b{height:142.053750px;}
.h1c{height:157.286250px;}
.h1a{height:202.437187px;}
.h18{height:283.077187px;}
.h19{height:290.997188px;}
.hd{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w8{width:39.096000px;}
.w7{width:49.680000px;}
.w10{width:55.260000px;}
.w9{width:59.400000px;}
.wa{width:69.660000px;}
.w13{width:96.696000px;}
.w6{width:104.580000px;}
.w11{width:110.916000px;}
.wf{width:133.920000px;}
.w15{width:144.036000px;}
.w17{width:156.060000px;}
.wd{width:166.890000px;}
.w16{width:173.370000px;}
.w14{width:181.260000px;}
.we{width:182.550000px;}
.wc{width:209.730000px;}
.w12{width:238.170000px;}
.wb{width:324.210000px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059957px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x3b{left:7.740000px;}
.x38{left:9.540000px;}
.x42{left:10.620000px;}
.x36{left:11.700000px;}
.x3d{left:14.760000px;}
.x39{left:15.840000px;}
.x37{left:18.720000px;}
.x40{left:19.980000px;}
.x34{left:21.780000px;}
.x3f{left:23.940000px;}
.x44{left:26.100000px;}
.x45{left:27.720000px;}
.x6c{left:28.980000px;}
.x43{left:31.320000px;}
.x68{left:33.120000px;}
.x5a{left:36.000000px;}
.x55{left:38.874000px;}
.x54{left:40.320000px;}
.x53{left:42.660000px;}
.x58{left:44.280000px;}
.x6a{left:45.405000px;}
.x6b{left:48.600000px;}
.x5b{left:50.034000px;}
.x65{left:51.345000px;}
.x4f{left:52.374000px;}
.x52{left:53.634000px;}
.x50{left:56.520000px;}
.x51{left:58.680000px;}
.x70{left:61.605000px;}
.x69{left:64.080000px;}
.x4d{left:65.340000px;}
.x57{left:68.580000px;}
.x6e{left:70.020000px;}
.x56{left:74.340000px;}
.x6f{left:76.320000px;}
.x73{left:77.760000px;}
.x5c{left:79.740000px;}
.x4b{left:83.340000px;}
.x67{left:86.580000px;}
.x46{left:92.340000px;}
.x6d{left:98.460000px;}
.x4a{left:104.934000px;}
.x41{left:106.380000px;}
.x66{left:111.240000px;}
.x12{left:126.035987px;}
.x17{left:127.655987px;}
.x26{left:128.915987px;}
.x25{left:130.535987px;}
.x75{left:133.235987px;}
.x2{left:137.915987px;}
.x18{left:140.435987px;}
.x2e{left:146.915987px;}
.x1e{left:148.895987px;}
.x2b{left:155.009987px;}
.x1b{left:156.989987px;}
.x13{left:158.069987px;}
.x1d{left:161.669987px;}
.x62{left:174.089987px;}
.xb{left:179.309987px;}
.x2f{left:180.749987px;}
.x15{left:191.729987px;}
.x2c{left:192.809987px;}
.xa{left:197.309987px;}
.x4{left:198.389987px;}
.x6{left:212.069987px;}
.x61{left:213.689987px;}
.xc{left:219.449987px;}
.x27{left:225.209987px;}
.x28{left:229.709987px;}
.x10{left:257.609987px;}
.x76{left:277.049987px;}
.xf{left:281.774987px;}
.x2d{left:292.034987px;}
.x9{left:294.374987px;}
.x8{left:298.514987px;}
.x71{left:313.275000px;}
.x7b{left:318.854987px;}
.x1a{left:321.914987px;}
.x29{left:338.834987px;}
.x7{left:345.854987px;}
.x5{left:350.894987px;}
.x49{left:355.394987px;}
.xd{left:356.654987px;}
.x1c{left:357.734987px;}
.x19{left:366.194987px;}
.x48{left:393.194987px;}
.x59{left:394.455000px;}
.x14{left:396.614987px;}
.x3{left:409.034987px;}
.x5d{left:416.054987px;}
.x2a{left:442.334987px;}
.x16{left:443.414987px;}
.x74{left:449.894987px;}
.x1{left:456.224987px;}
.x77{left:462.854987px;}
.x11{left:472.244987px;}
.x72{left:486.645000px;}
.x63{left:493.485000px;}
.x1f{left:499.964987px;}
.x33{left:502.485000px;}
.x4c{left:506.085000px;}
.x23{left:508.424987px;}
.x5f{left:513.104987px;}
.x79{left:514.544987px;}
.x5e{left:518.504987px;}
.x20{left:521.204987px;}
.x7a{left:529.304987px;}
.xe{left:543.884987px;}
.x31{left:555.044987px;}
.x21{left:574.124987px;}
.x24{left:597.884987px;}
.x35{left:607.425000px;}
.x32{left:618.944987px;}
.x60{left:649.544987px;}
.x3a{left:657.825000px;}
.x64{left:675.645000px;}
.x4e{left:689.370000px;}
.x7c{left:691.169987px;}
.x3c{left:697.290000px;}
.x3e{left:757.050000px;}
.x30{left:759.929987px;}
.x22{left:822.209987px;}
.x47{left:829.409987px;}
.x78{left:835.169987px;}
@media print{
.vc{vertical-align:-71.680000pt;}
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.ve{vertical-align:-12.160000pt;}
.v4{vertical-align:-10.880000pt;}
.v9{vertical-align:-2.560000pt;}
.vd{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.v5{vertical-align:10.880000pt;}
.vf{vertical-align:12.160000pt;}
.vb{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:66.026667pt;}
.v7{vertical-align:137.706667pt;}
.v8{vertical-align:144.746667pt;}
.ls37{letter-spacing:-1.008000pt;}
.ls48{letter-spacing:-0.832000pt;}
.ls42{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.286933pt;}
.ls46{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.204267pt;}
.ls33{letter-spacing:-0.178133pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.147733pt;}
.lse{letter-spacing:-0.075733pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls34{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls36{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.052480pt;}
.ls11{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.117867pt;}
.ls45{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.138133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.166400pt;}
.ls31{letter-spacing:0.168533pt;}
.ls30{letter-spacing:0.182933pt;}
.ls47{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.203733pt;}
.ls3a{letter-spacing:0.229333pt;}
.ls39{letter-spacing:0.230933pt;}
.ls3b{letter-spacing:0.232960pt;}
.ls27{letter-spacing:0.253440pt;}
.ls1{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.330667pt;}
.ls35{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.788480pt;}
.ls2a{letter-spacing:0.925440pt;}
.ls1e{letter-spacing:1.093120pt;}
.ls2e{letter-spacing:1.163520pt;}
.ls3d{letter-spacing:1.218560pt;}
.lsb{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.402880pt;}
.ls3f{letter-spacing:1.738240pt;}
.ls23{letter-spacing:1.941760pt;}
.ls2c{letter-spacing:1.957760pt;}
.ls3c{letter-spacing:2.052480pt;}
.ls2d{letter-spacing:2.145280pt;}
.ls28{letter-spacing:2.424320pt;}
.ls21{letter-spacing:2.608640pt;}
.ls40{letter-spacing:2.654720pt;}
.ls1c{letter-spacing:3.153920pt;}
.ls16{letter-spacing:3.531520pt;}
.ls1a{letter-spacing:3.691520pt;}
.ls18{letter-spacing:3.793920pt;}
.ls9{letter-spacing:3.840000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls22{letter-spacing:12.413440pt;}
.ls20{letter-spacing:12.976640pt;}
.ls1f{letter-spacing:13.053440pt;}
.ls17{letter-spacing:14.719360pt;}
.ls15{letter-spacing:15.338027pt;}
.ls1b{letter-spacing:15.359360pt;}
.ls25{letter-spacing:15.613440pt;}
.ls26{letter-spacing:16.176640pt;}
.ls1d{letter-spacing:18.123520pt;}
.ls14{letter-spacing:18.382080pt;}
.lsa{letter-spacing:18.560000pt;}
.ls19{letter-spacing:18.743040pt;}
.lsc{letter-spacing:24.960000pt;}
.ls7{letter-spacing:26.240000pt;}
.ls2b{letter-spacing:69.771520pt;}
.ls3e{letter-spacing:77.460480pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.433067pt;}
.ws3{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.718613pt;}
.ws20{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.999997pt;}
.wsb{word-spacing:-15.936000pt;}
.ws21{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.272000pt;}
.wsf{word-spacing:-11.854933pt;}
.wsc{word-spacing:-11.686400pt;}
.wsd{word-spacing:-11.538667pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1f{word-spacing:-9.764267pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws1d{word-spacing:-9.280000pt;}
.ws1c{word-spacing:-8.395733pt;}
.ws10{word-spacing:-8.370133pt;}
.wse{word-spacing:-8.349333pt;}
.ws18{word-spacing:-8.166400pt;}
.ws11{word-spacing:-7.988267pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:18.953920pt;}
.ws1b{word-spacing:19.189760pt;}
.ws1e{word-spacing:20.470080pt;}
._36{margin-left:-28.897280pt;}
._31{margin-left:-12.208853pt;}
._3{margin-left:-9.884160pt;}
._32{margin-left:-6.170880pt;}
._4{margin-left:-4.118400pt;}
._2{margin-left:-2.857813pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.960000pt;}
._5{width:1.958400pt;}
._b{width:3.120640pt;}
._10{width:4.139520pt;}
._19{width:5.440000pt;}
._7{width:6.517760pt;}
._6{width:7.595520pt;}
._f{width:8.596480pt;}
._1e{width:9.895680pt;}
._8{width:11.112960pt;}
._9{width:12.049920pt;}
._c{width:13.248000pt;}
._18{width:14.336000pt;}
._20{width:16.977920pt;}
._12{width:18.076160pt;}
._27{width:19.097600pt;}
._2f{width:20.006400pt;}
._11{width:20.902400pt;}
._1a{width:22.720000pt;}
._35{width:23.691959pt;}
._14{width:24.712960pt;}
._a{width:25.914880pt;}
._d{width:28.321280pt;}
._e{width:29.304320pt;}
._21{width:30.274560pt;}
._2b{width:31.288320pt;}
._15{width:32.325120pt;}
._16{width:33.256107pt;}
._1f{width:34.350080pt;}
._1c{width:35.456000pt;}
._1d{width:36.416000pt;}
._3a{width:38.208000pt;}
._39{width:40.640000pt;}
._30{width:41.728000pt;}
._2e{width:42.624000pt;}
._13{width:43.983360pt;}
._2d{width:45.120000pt;}
._2c{width:46.016000pt;}
._29{width:47.424000pt;}
._2a{width:48.768000pt;}
._26{width:50.229760pt;}
._25{width:51.338240pt;}
._1b{width:52.928000pt;}
._17{width:54.784000pt;}
._33{width:56.192000pt;}
._34{width:57.408000pt;}
._23{width:59.626667pt;}
._24{width:60.778667pt;}
._22{width:64.640000pt;}
._28{width:69.248000pt;}
._37{width:454.370987pt;}
._38{width:1869.205333pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:5.440000pt;}
.yf7{bottom:5.600000pt;}
.y125{bottom:5.760000pt;}
.y109{bottom:5.920000pt;}
.y120{bottom:6.080000pt;}
.y11e{bottom:6.240000pt;}
.y126{bottom:6.400000pt;}
.y145{bottom:7.200000pt;}
.y144{bottom:7.680000pt;}
.y143{bottom:8.160000pt;}
.y10c{bottom:14.080000pt;}
.yf5{bottom:14.240000pt;}
.y112{bottom:14.400000pt;}
.y10d{bottom:14.560000pt;}
.y10a{bottom:14.720000pt;}
.y10e{bottom:14.880000pt;}
.y13b{bottom:15.200000pt;}
.y13c{bottom:15.680000pt;}
.y13d{bottom:15.840000pt;}
.y147{bottom:16.480000pt;}
.y123{bottom:16.640000pt;}
.y110{bottom:22.880000pt;}
.yf0{bottom:23.040000pt;}
.y100{bottom:23.200000pt;}
.y108{bottom:23.520000pt;}
.y135{bottom:25.440000pt;}
.y13f{bottom:25.640000pt;}
.yf4{bottom:31.840000pt;}
.y106{bottom:32.000000pt;}
.y104{bottom:32.320000pt;}
.y105{bottom:32.640000pt;}
.y136{bottom:35.200000pt;}
.yfb{bottom:40.480000pt;}
.yed{bottom:40.640000pt;}
.yff{bottom:40.800000pt;}
.yfc{bottom:40.960000pt;}
.y101{bottom:41.120000pt;}
.y30{bottom:42.560000pt;}
.y134{bottom:44.800000pt;}
.y14c{bottom:44.960000pt;}
.yf3{bottom:49.440000pt;}
.y14e{bottom:54.560000pt;}
.y55{bottom:55.520000pt;}
.yef{bottom:58.240000pt;}
.yfe{bottom:58.400000pt;}
.y2f{bottom:64.000000pt;}
.y133{bottom:64.160000pt;}
.y14b{bottom:64.346667pt;}
.yf2{bottom:67.200000pt;}
.y14d{bottom:73.946667pt;}
.yee{bottom:76.000000pt;}
.y17d{bottom:79.840000pt;}
.y119{bottom:81.120000pt;}
.y14a{bottom:83.706667pt;}
.y2e{bottom:85.120000pt;}
.y85{bottom:85.440000pt;}
.y131{bottom:87.360000pt;}
.y149{bottom:96.800000pt;}
.y176{bottom:99.200000pt;}
.y17c{bottom:100.960000pt;}
.yb3{bottom:101.280000pt;}
.y52{bottom:101.920000pt;}
.y118{bottom:102.240000pt;}
.y84{bottom:106.560000pt;}
.y2d{bottom:108.640000pt;}
.y175{bottom:120.320000pt;}
.y51{bottom:120.800000pt;}
.y17b{bottom:122.080000pt;}
.yb2{bottom:122.400000pt;}
.ye9{bottom:123.360000pt;}
.y130{bottom:126.080000pt;}
.y83{bottom:127.680000pt;}
.ycb{bottom:129.760000pt;}
.y2c{bottom:129.920000pt;}
.y174{bottom:141.440000pt;}
.y17a{bottom:143.200000pt;}
.yb1{bottom:143.520000pt;}
.ye8{bottom:144.480000pt;}
.y12f{bottom:145.600000pt;}
.y87{bottom:148.640000pt;}
.y82{bottom:148.960000pt;}
.yca{bottom:150.880000pt;}
.y2b{bottom:151.040000pt;}
.y117{bottom:155.360000pt;}
.y50{bottom:158.560000pt;}
.y173{bottom:162.586667pt;}
.y179{bottom:164.506667pt;}
.yb0{bottom:164.826667pt;}
.y12e{bottom:164.986667pt;}
.ye7{bottom:165.786667pt;}
.y81{bottom:170.106667pt;}
.y2a{bottom:172.160000pt;}
.yc9{bottom:172.186667pt;}
.y116{bottom:176.506667pt;}
.y4f{bottom:177.600000pt;}
.y172{bottom:183.866667pt;}
.y12d{bottom:184.026667pt;}
.y19e{bottom:185.626667pt;}
.yaf{bottom:185.946667pt;}
.ye6{bottom:186.906667pt;}
.y80{bottom:191.226667pt;}
.y29{bottom:193.280000pt;}
.yc8{bottom:193.306667pt;}
.y115{bottom:197.786667pt;}
.y157{bottom:198.906667pt;}
.y4e{bottom:200.320000pt;}
.y171{bottom:204.986667pt;}
.y19d{bottom:206.746667pt;}
.yae{bottom:207.066667pt;}
.ye5{bottom:208.346667pt;}
.y7f{bottom:212.346667pt;}
.yc7{bottom:214.426667pt;}
.y28{bottom:214.586667pt;}
.y114{bottom:218.906667pt;}
.y170{bottom:226.106667pt;}
.y19c{bottom:227.866667pt;}
.yad{bottom:228.186667pt;}
.ye4{bottom:229.626667pt;}
.y7e{bottom:233.466667pt;}
.yc6{bottom:235.546667pt;}
.y27{bottom:235.706667pt;}
.y4d{bottom:238.106667pt;}
.y113{bottom:240.026667pt;}
.y16f{bottom:247.226667pt;}
.y19b{bottom:249.146667pt;}
.yac{bottom:249.466667pt;}
.ye3{bottom:250.746667pt;}
.y7d{bottom:254.746667pt;}
.y111{bottom:255.226667pt;}
.y26{bottom:256.826667pt;}
.y4c{bottom:257.146667pt;}
.y16e{bottom:268.346667pt;}
.y19a{bottom:270.266667pt;}
.yab{bottom:270.586667pt;}
.ye2{bottom:271.866667pt;}
.y7c{bottom:275.866667pt;}
.y25{bottom:277.946667pt;}
.y4b{bottom:279.866667pt;}
.y16d{bottom:289.626667pt;}
.y10f{bottom:291.226667pt;}
.y199{bottom:291.386667pt;}
.yaa{bottom:291.706667pt;}
.ye1{bottom:293.146667pt;}
.y7b{bottom:296.986667pt;}
.yc5{bottom:299.066667pt;}
.y24{bottom:299.226667pt;}
.y4a{bottom:303.546667pt;}
.y16c{bottom:310.746667pt;}
.y198{bottom:312.506667pt;}
.ya9{bottom:312.826667pt;}
.ye0{bottom:314.266667pt;}
.y7a{bottom:318.106667pt;}
.yc4{bottom:320.186667pt;}
.y23{bottom:320.346667pt;}
.y49{bottom:329.626667pt;}
.y129{bottom:330.906667pt;}
.y16b{bottom:331.866667pt;}
.y197{bottom:333.786667pt;}
.ya8{bottom:334.106667pt;}
.ydf{bottom:335.386667pt;}
.y79{bottom:339.066667pt;}
.y86{bottom:339.386667pt;}
.y22{bottom:341.466667pt;}
.y10b{bottom:344.826667pt;}
.y16a{bottom:352.986667pt;}
.y196{bottom:354.906667pt;}
.ya7{bottom:355.226667pt;}
.y48{bottom:355.546667pt;}
.yde{bottom:356.506667pt;}
.y78{bottom:360.506667pt;}
.y21{bottom:362.586667pt;}
.y169{bottom:374.306667pt;}
.y195{bottom:376.066667pt;}
.ya6{bottom:376.386667pt;}
.ydd{bottom:377.826667pt;}
.y156{bottom:379.426667pt;}
.y107{bottom:380.706667pt;}
.y47{bottom:381.626667pt;}
.y77{bottom:381.666667pt;}
.yc3{bottom:383.746667pt;}
.y20{bottom:383.866667pt;}
.y168{bottom:395.426667pt;}
.y178{bottom:397.186667pt;}
.ya5{bottom:397.506667pt;}
.ydc{bottom:398.946667pt;}
.y12c{bottom:399.106667pt;}
.y155{bottom:400.546667pt;}
.y76{bottom:402.306667pt;}
.yc2{bottom:404.866667pt;}
.y1f{bottom:404.986667pt;}
.y46{bottom:407.706667pt;}
.y167{bottom:416.546667pt;}
.y103{bottom:417.346667pt;}
.y12b{bottom:418.466667pt;}
.ya4{bottom:418.786667pt;}
.ydb{bottom:420.066667pt;}
.y154{bottom:421.666667pt;}
.y75{bottom:421.826667pt;}
.yc1{bottom:425.986667pt;}
.y1e{bottom:426.146667pt;}
.y45{bottom:427.906667pt;}
.y128{bottom:437.666667pt;}
.y12a{bottom:437.986667pt;}
.y153{bottom:439.106667pt;}
.y194{bottom:439.586667pt;}
.ya3{bottom:439.906667pt;}
.y74{bottom:441.186667pt;}
.y1d{bottom:447.266667pt;}
.y166{bottom:458.946667pt;}
.y73{bottom:460.546667pt;}
.y193{bottom:460.706667pt;}
.ya2{bottom:461.026667pt;}
.yda{bottom:462.466667pt;}
.yc0{bottom:468.386667pt;}
.y1c{bottom:468.546667pt;}
.y72{bottom:479.906667pt;}
.y165{bottom:480.066667pt;}
.y192{bottom:481.826667pt;}
.ya1{bottom:482.146667pt;}
.yd9{bottom:483.586667pt;}
.y102{bottom:488.546667pt;}
.ybf{bottom:489.506667pt;}
.y1b{bottom:489.666667pt;}
.y127{bottom:490.626667pt;}
.y71{bottom:499.266667pt;}
.y164{bottom:501.186667pt;}
.y191{bottom:503.106667pt;}
.ya0{bottom:503.426667pt;}
.yd8{bottom:504.706667pt;}
.yfd{bottom:506.786667pt;}
.ybe{bottom:510.626667pt;}
.y1a{bottom:510.786667pt;}
.y70{bottom:518.786667pt;}
.y163{bottom:522.306667pt;}
.y190{bottom:524.226667pt;}
.y9f{bottom:524.546667pt;}
.yd7{bottom:525.826667pt;}
.y124{bottom:531.426667pt;}
.y19{bottom:531.906667pt;}
.y6f{bottom:538.146667pt;}
.y162{bottom:543.586667pt;}
.y18f{bottom:545.346667pt;}
.y9e{bottom:545.666667pt;}
.yd6{bottom:547.106667pt;}
.y122{bottom:552.066667pt;}
.ybd{bottom:553.026667pt;}
.y18{bottom:553.186667pt;}
.y6e{bottom:557.506667pt;}
.y161{bottom:564.706667pt;}
.y18e{bottom:566.466667pt;}
.y9d{bottom:566.786667pt;}
.yd5{bottom:568.226667pt;}
.y121{bottom:572.226667pt;}
.ybc{bottom:574.146667pt;}
.y17{bottom:574.306667pt;}
.y6d{bottom:576.866667pt;}
.y44{bottom:581.826667pt;}
.y160{bottom:585.853333pt;}
.y18d{bottom:587.613333pt;}
.y9c{bottom:587.933333pt;}
.yd4{bottom:589.373333pt;}
.y11f{bottom:592.253333pt;}
.ybb{bottom:595.293333pt;}
.y16{bottom:595.426667pt;}
.yfa{bottom:595.773333pt;}
.y6c{bottom:596.413333pt;}
.y15f{bottom:606.973333pt;}
.y152{bottom:607.613333pt;}
.y43{bottom:607.746667pt;}
.y18c{bottom:608.893333pt;}
.y9b{bottom:609.213333pt;}
.yd3{bottom:610.653333pt;}
.y11d{bottom:612.253333pt;}
.y6b{bottom:615.773333pt;}
.y15{bottom:616.573333pt;}
.y15e{bottom:628.253333pt;}
.y151{bottom:628.893333pt;}
.y18b{bottom:630.013333pt;}
.y9a{bottom:630.333333pt;}
.y42{bottom:632.573333pt;}
.y6a{bottom:635.133333pt;}
.y14{bottom:637.693333pt;}
.y11c{bottom:638.493333pt;}
.y15d{bottom:649.053333pt;}
.y150{bottom:650.013333pt;}
.y18a{bottom:651.133333pt;}
.y99{bottom:651.453333pt;}
.y148{bottom:652.413333pt;}
.y41{bottom:653.693333pt;}
.y69{bottom:654.493333pt;}
.yba{bottom:658.813333pt;}
.y13{bottom:658.973333pt;}
.y14f{bottom:667.293333pt;}
.y15c{bottom:670.493333pt;}
.y189{bottom:672.253333pt;}
.y98{bottom:672.573333pt;}
.y146{bottom:672.893333pt;}
.y68{bottom:673.853333pt;}
.y40{bottom:675.453333pt;}
.yb9{bottom:679.933333pt;}
.y12{bottom:680.093333pt;}
.yf9{bottom:684.573333pt;}
.y15b{bottom:691.613333pt;}
.y67{bottom:693.373333pt;}
.y188{bottom:693.533333pt;}
.y97{bottom:693.853333pt;}
.y3f{bottom:696.893333pt;}
.y11{bottom:701.213333pt;}
.y142{bottom:712.413333pt;}
.y66{bottom:712.733333pt;}
.y15a{bottom:712.893333pt;}
.y187{bottom:714.653333pt;}
.y96{bottom:714.973333pt;}
.y3e{bottom:718.013333pt;}
.y10{bottom:722.333333pt;}
.y159{bottom:730.173333pt;}
.y65{bottom:732.093333pt;}
.y141{bottom:734.653333pt;}
.y186{bottom:735.773333pt;}
.y95{bottom:736.093333pt;}
.yf8{bottom:738.173333pt;}
.y3d{bottom:740.413333pt;}
.yb8{bottom:743.453333pt;}
.yf{bottom:743.613333pt;}
.y64{bottom:751.453333pt;}
.y140{bottom:754.973333pt;}
.y177{bottom:756.893333pt;}
.y94{bottom:757.213333pt;}
.yb7{bottom:764.573333pt;}
.ye{bottom:764.733333pt;}
.y3c{bottom:765.053333pt;}
.y63{bottom:770.973333pt;}
.yd2{bottom:774.653333pt;}
.y13e{bottom:775.453333pt;}
.y185{bottom:778.173333pt;}
.y93{bottom:778.493333pt;}
.yd{bottom:785.853333pt;}
.y3b{bottom:789.533333pt;}
.y62{bottom:790.333333pt;}
.yf6{bottom:791.613333pt;}
.y184{bottom:799.293333pt;}
.y92{bottom:799.613333pt;}
.yc{bottom:806.973333pt;}
.yb6{bottom:807.013333pt;}
.y61{bottom:809.733333pt;}
.yec{bottom:810.053333pt;}
.y3a{bottom:814.013333pt;}
.y13a{bottom:815.013333pt;}
.y183{bottom:820.453333pt;}
.y91{bottom:820.773333pt;}
.yb5{bottom:828.133333pt;}
.yb{bottom:828.293333pt;}
.y60{bottom:829.093333pt;}
.y39{bottom:838.853333pt;}
.y182{bottom:841.573333pt;}
.y90{bottom:841.893333pt;}
.yb4{bottom:845.573333pt;}
.y5f{bottom:848.453333pt;}
.ya{bottom:849.413333pt;}
.y139{bottom:854.373333pt;}
.y181{bottom:862.853333pt;}
.y8f{bottom:863.173333pt;}
.y38{bottom:866.373333pt;}
.y5e{bottom:867.973333pt;}
.y9{bottom:870.533333pt;}
.y138{bottom:874.533333pt;}
.y180{bottom:883.973333pt;}
.y8e{bottom:884.293333pt;}
.y5d{bottom:887.333333pt;}
.y8{bottom:891.653333pt;}
.y137{bottom:894.533333pt;}
.y37{bottom:895.173333pt;}
.y158{bottom:899.013333pt;}
.yeb{bottom:905.093333pt;}
.y8d{bottom:905.413333pt;}
.y5c{bottom:906.693333pt;}
.y7{bottom:912.933333pt;}
.y132{bottom:914.693333pt;}
.y36{bottom:924.453333pt;}
.yea{bottom:926.213333pt;}
.y8c{bottom:926.533333pt;}
.y5b{bottom:932.613333pt;}
.y6{bottom:934.053333pt;}
.y17f{bottom:947.493333pt;}
.y8b{bottom:947.813333pt;}
.y35{bottom:952.293333pt;}
.y5a{bottom:953.093333pt;}
.y5{bottom:955.173333pt;}
.yd1{bottom:957.253333pt;}
.y59{bottom:968.613333pt;}
.y8a{bottom:968.933333pt;}
.y34{bottom:975.013333pt;}
.y4{bottom:976.293333pt;}
.yd0{bottom:978.373333pt;}
.y58{bottom:989.733333pt;}
.y89{bottom:990.053333pt;}
.y3{bottom:997.573333pt;}
.y33{bottom:997.893333pt;}
.yce{bottom:1000.133333pt;}
.y57{bottom:1010.853333pt;}
.y88{bottom:1011.173333pt;}
.y11b{bottom:1013.893333pt;}
.ycf{bottom:1016.480000pt;}
.ycd{bottom:1018.240000pt;}
.y2{bottom:1018.693333pt;}
.y32{bottom:1019.973333pt;}
.y17e{bottom:1032.160000pt;}
.y56{bottom:1032.480000pt;}
.y11a{bottom:1033.760000pt;}
.ycc{bottom:1036.320000pt;}
.y31{bottom:1039.520000pt;}
.y1{bottom:1039.840000pt;}
.y54{bottom:1052.960000pt;}
.y53{bottom:1065.760000pt;}
.h22{height:17.600000pt;}
.h1f{height:17.792000pt;}
.h2d{height:19.360000pt;}
.h2e{height:19.392000pt;}
.h2b{height:19.520000pt;}
.h35{height:19.680000pt;}
.h34{height:19.840000pt;}
.h30{height:20.000000pt;}
.h36{height:21.440000pt;}
.h25{height:35.232000pt;}
.h27{height:35.360000pt;}
.h24{height:36.000000pt;}
.h32{height:38.720000pt;}
.h33{height:38.912000pt;}
.h2f{height:40.640000pt;}
.h12{height:42.084375pt;}
.he{height:43.215000pt;}
.h11{height:43.380000pt;}
.h14{height:48.530000pt;}
.h1e{height:52.134375pt;}
.h20{height:52.800000pt;}
.h26{height:52.960000pt;}
.h28{height:53.535000pt;}
.h16{height:56.406250pt;}
.hc{height:56.562187pt;}
.h13{height:57.758750pt;}
.h2c{height:57.787500pt;}
.h29{height:58.060000pt;}
.h4{height:58.563750pt;}
.h2a{height:59.340000pt;}
.h15{height:62.781250pt;}
.h10{height:62.812500pt;}
.hf{height:63.399375pt;}
.h2{height:64.500000pt;}
.h5{height:65.531250pt;}
.h23{height:70.560000pt;}
.ha{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:76.671562pt;}
.h31{height:77.440000pt;}
.h9{height:83.540625pt;}
.hb{height:84.662813pt;}
.h1d{height:88.160000pt;}
.h21{height:88.192000pt;}
.h8{height:96.750000pt;}
.h37{height:96.992000pt;}
.h7{height:98.296875pt;}
.h17{height:113.917500pt;}
.h1b{height:126.270000pt;}
.h1c{height:139.810000pt;}
.h1a{height:179.944167pt;}
.h18{height:251.624167pt;}
.h19{height:258.664167pt;}
.hd{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w8{width:34.752000pt;}
.w7{width:44.160000pt;}
.w10{width:49.120000pt;}
.w9{width:52.800000pt;}
.wa{width:61.920000pt;}
.w13{width:85.952000pt;}
.w6{width:92.960000pt;}
.w11{width:98.592000pt;}
.wf{width:119.040000pt;}
.w15{width:128.032000pt;}
.w17{width:138.720000pt;}
.wd{width:148.346667pt;}
.w16{width:154.106667pt;}
.w14{width:161.120000pt;}
.we{width:162.266667pt;}
.wc{width:186.426667pt;}
.w12{width:211.706667pt;}
.wb{width:288.186667pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719961pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x3b{left:6.880000pt;}
.x38{left:8.480000pt;}
.x42{left:9.440000pt;}
.x36{left:10.400000pt;}
.x3d{left:13.120000pt;}
.x39{left:14.080000pt;}
.x37{left:16.640000pt;}
.x40{left:17.760000pt;}
.x34{left:19.360000pt;}
.x3f{left:21.280000pt;}
.x44{left:23.200000pt;}
.x45{left:24.640000pt;}
.x6c{left:25.760000pt;}
.x43{left:27.840000pt;}
.x68{left:29.440000pt;}
.x5a{left:32.000000pt;}
.x55{left:34.554667pt;}
.x54{left:35.840000pt;}
.x53{left:37.920000pt;}
.x58{left:39.360000pt;}
.x6a{left:40.360000pt;}
.x6b{left:43.200000pt;}
.x5b{left:44.474667pt;}
.x65{left:45.640000pt;}
.x4f{left:46.554667pt;}
.x52{left:47.674667pt;}
.x50{left:50.240000pt;}
.x51{left:52.160000pt;}
.x70{left:54.760000pt;}
.x69{left:56.960000pt;}
.x4d{left:58.080000pt;}
.x57{left:60.960000pt;}
.x6e{left:62.240000pt;}
.x56{left:66.080000pt;}
.x6f{left:67.840000pt;}
.x73{left:69.120000pt;}
.x5c{left:70.880000pt;}
.x4b{left:74.080000pt;}
.x67{left:76.960000pt;}
.x46{left:82.080000pt;}
.x6d{left:87.520000pt;}
.x4a{left:93.274667pt;}
.x41{left:94.560000pt;}
.x66{left:98.880000pt;}
.x12{left:112.031988pt;}
.x17{left:113.471988pt;}
.x26{left:114.591988pt;}
.x25{left:116.031988pt;}
.x75{left:118.431988pt;}
.x2{left:122.591988pt;}
.x18{left:124.831988pt;}
.x2e{left:130.591988pt;}
.x1e{left:132.351988pt;}
.x2b{left:137.786655pt;}
.x1b{left:139.546655pt;}
.x13{left:140.506655pt;}
.x1d{left:143.706655pt;}
.x62{left:154.746655pt;}
.xb{left:159.386655pt;}
.x2f{left:160.666655pt;}
.x15{left:170.426655pt;}
.x2c{left:171.386655pt;}
.xa{left:175.386655pt;}
.x4{left:176.346655pt;}
.x6{left:188.506655pt;}
.x61{left:189.946655pt;}
.xc{left:195.066655pt;}
.x27{left:200.186655pt;}
.x28{left:204.186655pt;}
.x10{left:228.986655pt;}
.x76{left:246.266655pt;}
.xf{left:250.466655pt;}
.x2d{left:259.586655pt;}
.x9{left:261.666655pt;}
.x8{left:265.346655pt;}
.x71{left:278.466667pt;}
.x7b{left:283.426655pt;}
.x1a{left:286.146655pt;}
.x29{left:301.186655pt;}
.x7{left:307.426655pt;}
.x5{left:311.906655pt;}
.x49{left:315.906655pt;}
.xd{left:317.026655pt;}
.x1c{left:317.986655pt;}
.x19{left:325.506655pt;}
.x48{left:349.506655pt;}
.x59{left:350.626667pt;}
.x14{left:352.546655pt;}
.x3{left:363.586655pt;}
.x5d{left:369.826655pt;}
.x2a{left:393.186655pt;}
.x16{left:394.146655pt;}
.x74{left:399.906655pt;}
.x1{left:405.533321pt;}
.x77{left:411.426655pt;}
.x11{left:419.773321pt;}
.x72{left:432.573333pt;}
.x63{left:438.653333pt;}
.x1f{left:444.413322pt;}
.x33{left:446.653333pt;}
.x4c{left:449.853333pt;}
.x23{left:451.933322pt;}
.x5f{left:456.093322pt;}
.x79{left:457.373322pt;}
.x5e{left:460.893322pt;}
.x20{left:463.293322pt;}
.x7a{left:470.493322pt;}
.xe{left:483.453321pt;}
.x31{left:493.373322pt;}
.x21{left:510.333322pt;}
.x24{left:531.453322pt;}
.x35{left:539.933333pt;}
.x32{left:550.173322pt;}
.x60{left:577.373322pt;}
.x3a{left:584.733333pt;}
.x64{left:600.573333pt;}
.x4e{left:612.773333pt;}
.x7c{left:614.373322pt;}
.x3c{left:619.813333pt;}
.x3e{left:672.933333pt;}
.x30{left:675.493322pt;}
.x22{left:730.853322pt;}
.x47{left:737.253322pt;}
.x78{left:742.373322pt;}
}




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