
    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_836c89c0125592f5a0f1a024.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_45f32b52293a931820531d47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_549ddbb34fed8b7247c055b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_5e5786bc547bfa4b6b3c6790.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_77f72ce7dc717767c70e8656.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072266;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_d9e178a93f9ab435ab901d24.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_14a36298a2aaa514ec163b81.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_10cf7d4cef3dcf9dc9943da1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4e2a236ff524a1a6e39f4d47.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_5b4ab8ff52674482dfcf48d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936035;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_113a16f91efe2b135dfe822b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_60ac172ea4e0f2851f0d1d1a.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.260000px;}
.ls41{letter-spacing:-0.738000px;}
.ls3f{letter-spacing:-0.612000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls40{letter-spacing:-0.018000px;}
.lse{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.018000px;}
.ls38{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls29{letter-spacing:0.059040px;}
.ls2e{letter-spacing:0.106800px;}
.ls3a{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls39{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.154800px;}
.ls14{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.210240px;}
.ls3c{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls43{letter-spacing:0.269400px;}
.ls36{letter-spacing:0.269760px;}
.ls3d{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.298800px;}
.ls2b{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.316800px;}
.ls24{letter-spacing:0.331800px;}
.lsd{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.666000px;}
.ls7{letter-spacing:0.900000px;}
.ls25{letter-spacing:1.050000px;}
.ls32{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.620000px;}
.ls23{letter-spacing:2.340000px;}
.ls21{letter-spacing:3.060000px;}
.ls1d{letter-spacing:3.780000px;}
.lsb{letter-spacing:4.500000px;}
.lsc{letter-spacing:5.400000px;}
.ls1a{letter-spacing:7.380000px;}
.ls13{letter-spacing:8.586720px;}
.ls1c{letter-spacing:9.540000px;}
.ls1b{letter-spacing:10.260000px;}
.ls28{letter-spacing:10.980000px;}
.ls5{letter-spacing:11.700000px;}
.lsa{letter-spacing:13.677840px;}
.ls33{letter-spacing:15.066720px;}
.ls18{letter-spacing:16.020000px;}
.ls6{letter-spacing:16.740000px;}
.ls2d{letter-spacing:17.460000px;}
.ls34{letter-spacing:18.180000px;}
.ls15{letter-spacing:19.620000px;}
.ls22{letter-spacing:20.340000px;}
.ls17{letter-spacing:21.780000px;}
.ls16{letter-spacing:21.960000px;}
.ls1f{letter-spacing:23.220000px;}
.ls30{letter-spacing:23.400000px;}
.ls12{letter-spacing:26.100000px;}
.ls9{letter-spacing:26.820000px;}
.ls1e{letter-spacing:39.060000px;}
.ls2f{letter-spacing:44.562720px;}
.ls4{letter-spacing:56.160000px;}
.ls20{letter-spacing:404.100000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws17{word-spacing:-54.468000px;}
.ws16{word-spacing:-54.270000px;}
.ws15{word-spacing:-54.000000px;}
.ws7{word-spacing:-16.280640px;}
.ws11{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.990000px;}
.wsf{word-spacing:-15.606000px;}
.wsd{word-spacing:-15.552000px;}
.ws9{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.271800px;}
.ws14{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.094800px;}
.ws12{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.wse{word-spacing:-14.580000px;}
.ws1e{word-spacing:-13.860000px;}
.ws21{word-spacing:-13.680000px;}
.ws20{word-spacing:-13.626000px;}
.ws19{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.518000px;}
.ws18{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.482000px;}
.ws1f{word-spacing:-13.392000px;}
.ws1c{word-spacing:-13.140000px;}
.ws1d{word-spacing:-12.762000px;}
.ws23{word-spacing:-12.420000px;}
.ws22{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.064160px;}
.ws6{word-spacing:-7.981920px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-4.238640px;}
._5{margin-left:-3.177840px;}
._3{margin-left:-2.074320px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._d{width:2.814000px;}
._14{width:4.056720px;}
._a{width:5.354640px;}
._b{width:6.594720px;}
._c{width:8.245440px;}
._4{width:9.310320px;}
._2{width:10.593600px;}
._24{width:11.726880px;}
._e{width:13.386240px;}
._7{width:14.520240px;}
._8{width:15.660240px;}
._9{width:16.852800px;}
._12{width:18.001440px;}
._13{width:19.099920px;}
._16{width:20.318400px;}
._17{width:21.585360px;}
._11{width:23.016240px;}
._10{width:24.377760px;}
._15{width:25.422960px;}
._f{width:27.101280px;}
._21{width:28.206720px;}
._20{width:29.342160px;}
._23{width:30.716640px;}
._22{width:31.852080px;}
._1f{width:33.286320px;}
._19{width:35.272320px;}
._18{width:36.513360px;}
._25{width:39.136320px;}
._1b{width:40.323600px;}
._1a{width:41.592960px;}
._1d{width:42.802080px;}
._1c{width:43.863840px;}
._1e{width:45.101520px;}
._26{width:53.903520px;}
._27{width:811.380000px;}
._28{width:936.120000px;}
.fc4{color:rgb(34,31,31);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(48,48,48);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsc{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fs9{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1d1{bottom:2.340000px;}
.y123{bottom:2.520000px;}
.y1b4{bottom:2.880000px;}
.y1bb{bottom:3.060000px;}
.y4b{bottom:4.185000px;}
.y3{bottom:4.320000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.y4d{bottom:7.200000px;}
.y4c{bottom:12.060000px;}
.y125{bottom:16.200000px;}
.y1d2{bottom:16.380000px;}
.y122{bottom:16.740000px;}
.y1b8{bottom:18.360000px;}
.y1bf{bottom:18.540000px;}
.y124{bottom:30.060000px;}
.y121{bottom:30.420000px;}
.y9{bottom:32.940000px;}
.y1b7{bottom:34.020000px;}
.y1be{bottom:34.065000px;}
.y7{bottom:48.600000px;}
.y1b6{bottom:49.500000px;}
.y1bd{bottom:49.545000px;}
.y6{bottom:72.900000px;}
.y1d3{bottom:88.920000px;}
.y14d{bottom:89.280000px;}
.y1d0{bottom:90.360000px;}
.yb3{bottom:91.080000px;}
.y11d{bottom:93.420000px;}
.yff{bottom:96.300000px;}
.y86{bottom:99.180000px;}
.ydf{bottom:104.220000px;}
.y135{bottom:104.940000px;}
.y1b1{bottom:105.480000px;}
.y14c{bottom:106.560000px;}
.y167{bottom:107.460000px;}
.yb2{bottom:108.180000px;}
.y11c{bottom:110.700000px;}
.yfe{bottom:113.400000px;}
.y85{bottom:116.460000px;}
.y19f{bottom:119.700000px;}
.y49{bottom:121.500000px;}
.y134{bottom:122.220000px;}
.y1b0{bottom:122.760000px;}
.y166{bottom:124.740000px;}
.yb1{bottom:125.460000px;}
.y11b{bottom:127.980000px;}
.y1cf{bottom:128.700000px;}
.y14b{bottom:129.240000px;}
.yfd{bottom:131.760000px;}
.y84{bottom:133.740000px;}
.y19e{bottom:136.980000px;}
.y48{bottom:138.780000px;}
.y1af{bottom:140.040000px;}
.y165{bottom:142.020000px;}
.yb0{bottom:142.740000px;}
.y11a{bottom:145.260000px;}
.y1ce{bottom:145.980000px;}
.y133{bottom:148.320000px;}
.yfc{bottom:149.040000px;}
.y83{bottom:151.020000px;}
.y19d{bottom:154.260000px;}
.y47{bottom:156.060000px;}
.y1ae{bottom:157.140000px;}
.y164{bottom:159.300000px;}
.yaf{bottom:160.020000px;}
.y119{bottom:162.540000px;}
.y1cd{bottom:163.260000px;}
.yfb{bottom:166.320000px;}
.y82{bottom:168.300000px;}
.y19c{bottom:171.540000px;}
.y46{bottom:173.340000px;}
.y1ad{bottom:174.420000px;}
.y163{bottom:176.580000px;}
.yae{bottom:177.300000px;}
.y118{bottom:179.820000px;}
.y1cc{bottom:180.540000px;}
.yfa{bottom:184.710000px;}
.y81{bottom:185.610000px;}
.y19b{bottom:188.670000px;}
.y45{bottom:190.470000px;}
.y1ac{bottom:191.730000px;}
.y162{bottom:193.890000px;}
.yad{bottom:194.610000px;}
.y117{bottom:196.950000px;}
.y1cb{bottom:197.670000px;}
.yf9{bottom:201.810000px;}
.y80{bottom:202.710000px;}
.y19a{bottom:205.950000px;}
.y44{bottom:207.750000px;}
.y1ab{bottom:209.010000px;}
.y161{bottom:210.990000px;}
.yac{bottom:211.710000px;}
.y116{bottom:214.230000px;}
.y1ca{bottom:214.950000px;}
.yf8{bottom:219.090000px;}
.y7f{bottom:219.990000px;}
.y199{bottom:223.230000px;}
.y43{bottom:225.030000px;}
.y1aa{bottom:226.290000px;}
.y160{bottom:228.270000px;}
.yab{bottom:228.990000px;}
.y115{bottom:231.510000px;}
.y1c9{bottom:232.230000px;}
.yf7{bottom:236.370000px;}
.y7e{bottom:237.270000px;}
.y198{bottom:240.510000px;}
.y42{bottom:242.310000px;}
.yde{bottom:243.390000px;}
.y1a9{bottom:243.570000px;}
.y15f{bottom:245.550000px;}
.yaa{bottom:246.270000px;}
.y114{bottom:248.790000px;}
.y1c8{bottom:249.510000px;}
.yf6{bottom:253.650000px;}
.y7d{bottom:254.550000px;}
.y197{bottom:257.790000px;}
.y41{bottom:259.590000px;}
.y1a8{bottom:260.670000px;}
.ydd{bottom:261.750000px;}
.y15e{bottom:262.830000px;}
.ya9{bottom:263.550000px;}
.y113{bottom:266.070000px;}
.y1c7{bottom:266.790000px;}
.yf5{bottom:270.930000px;}
.y7c{bottom:271.830000px;}
.y196{bottom:275.070000px;}
.y40{bottom:276.870000px;}
.y1a7{bottom:277.950000px;}
.ydc{bottom:279.930000px;}
.y15d{bottom:280.110000px;}
.ya8{bottom:280.830000px;}
.y112{bottom:283.350000px;}
.y1c6{bottom:284.070000px;}
.yf4{bottom:288.210000px;}
.y7b{bottom:288.930000px;}
.y195{bottom:292.170000px;}
.y3f{bottom:293.970000px;}
.y1a6{bottom:295.230000px;}
.y15c{bottom:297.390000px;}
.ya7{bottom:297.930000px;}
.ydb{bottom:298.290000px;}
.y111{bottom:300.450000px;}
.y1c5{bottom:301.170000px;}
.yf3{bottom:305.310000px;}
.y7a{bottom:306.210000px;}
.y194{bottom:309.450000px;}
.y3e{bottom:311.250000px;}
.y1a5{bottom:312.510000px;}
.y15b{bottom:314.490000px;}
.ya6{bottom:315.210000px;}
.yda{bottom:315.570000px;}
.y110{bottom:317.730000px;}
.y1c4{bottom:318.450000px;}
.yf2{bottom:322.590000px;}
.y79{bottom:323.490000px;}
.y193{bottom:326.730000px;}
.y3d{bottom:328.530000px;}
.y1a4{bottom:329.790000px;}
.ya5{bottom:332.490000px;}
.yd9{bottom:332.850000px;}
.y10f{bottom:335.010000px;}
.y1c3{bottom:335.730000px;}
.yf1{bottom:339.870000px;}
.y15a{bottom:340.590000px;}
.y78{bottom:340.770000px;}
.y132{bottom:345.630000px;}
.y3c{bottom:345.810000px;}
.y1a3{bottom:347.070000px;}
.ya4{bottom:349.770000px;}
.yd8{bottom:351.210000px;}
.y10e{bottom:352.290000px;}
.y1c2{bottom:353.010000px;}
.y14a{bottom:354.990000px;}
.yf0{bottom:357.150000px;}
.y77{bottom:358.050000px;}
.y3b{bottom:363.090000px;}
.y1a2{bottom:364.170000px;}
.y149{bottom:366.510000px;}
.ya3{bottom:367.050000px;}
.yd7{bottom:368.490000px;}
.y10d{bottom:369.570000px;}
.y1c1{bottom:370.290000px;}
.y76{bottom:375.330000px;}
.yef{bottom:376.410000px;}
.y3a{bottom:380.370000px;}
.y192{bottom:381.450000px;}
.y148{bottom:383.610000px;}
.ya2{bottom:384.330000px;}
.yd6{bottom:385.590000px;}
.y10c{bottom:386.670000px;}
.y1c0{bottom:387.570000px;}
.y75{bottom:392.430000px;}
.yee{bottom:393.510000px;}
.y39{bottom:397.470000px;}
.y147{bottom:400.890000px;}
.y1bc{bottom:401.430000px;}
.ya1{bottom:402.510000px;}
.yd5{bottom:403.950000px;}
.y74{bottom:409.710000px;}
.yed{bottom:410.790000px;}
.y38{bottom:414.750000px;}
.y146{bottom:418.170000px;}
.ya0{bottom:419.790000px;}
.y4a{bottom:420.870000px;}
.yd4{bottom:421.230000px;}
.yec{bottom:428.115000px;}
.y73{bottom:431.535000px;}
.y37{bottom:432.075000px;}
.y145{bottom:435.495000px;}
.y191{bottom:436.215000px;}
.y9f{bottom:437.115000px;}
.yd3{bottom:438.555000px;}
.yeb{bottom:445.395000px;}
.y36{bottom:449.355000px;}
.y144{bottom:452.775000px;}
.y72{bottom:453.315000px;}
.y190{bottom:453.495000px;}
.y9e{bottom:454.395000px;}
.yd2{bottom:455.835000px;}
.yea{bottom:462.675000px;}
.y1ba{bottom:463.575000px;}
.y35{bottom:466.635000px;}
.y143{bottom:470.055000px;}
.y71{bottom:470.595000px;}
.y18f{bottom:470.775000px;}
.y9d{bottom:472.755000px;}
.yd1{bottom:472.935000px;}
.y10b{bottom:473.115000px;}
.y1b9{bottom:479.235000px;}
.ye9{bottom:479.955000px;}
.y34{bottom:483.015000px;}
.y142{bottom:487.155000px;}
.y70{bottom:487.875000px;}
.y18e{bottom:488.055000px;}
.y9c{bottom:490.035000px;}
.yd0{bottom:490.215000px;}
.y1a1{bottom:490.935000px;}
.y1b5{bottom:494.715000px;}
.ye8{bottom:497.055000px;}
.y33{bottom:497.955000px;}
.y141{bottom:504.435000px;}
.y6f{bottom:504.975000px;}
.y18d{bottom:505.335000px;}
.y9b{bottom:507.135000px;}
.ycf{bottom:507.495000px;}
.y1a0{bottom:508.215000px;}
.y32{bottom:511.815000px;}
.ye7{bottom:514.335000px;}
.y140{bottom:521.715000px;}
.y6e{bottom:522.255000px;}
.y18c{bottom:522.435000px;}
.yce{bottom:524.775000px;}
.y9a{bottom:525.495000px;}
.y31{bottom:525.675000px;}
.ye6{bottom:531.615000px;}
.y13f{bottom:538.995000px;}
.y30{bottom:539.355000px;}
.y6d{bottom:539.535000px;}
.y18b{bottom:539.715000px;}
.ycd{bottom:542.055000px;}
.y99{bottom:542.775000px;}
.y2f{bottom:553.215000px;}
.y13e{bottom:556.275000px;}
.y6c{bottom:556.815000px;}
.y18a{bottom:556.995000px;}
.ye5{bottom:557.715000px;}
.ycc{bottom:559.335000px;}
.y98{bottom:560.055000px;}
.y2e{bottom:567.075000px;}
.y159{bottom:571.215000px;}
.y13d{bottom:573.555000px;}
.y6b{bottom:574.095000px;}
.y189{bottom:574.275000px;}
.y1b3{bottom:575.535000px;}
.y10a{bottom:576.615000px;}
.y97{bottom:577.335000px;}
.y2d{bottom:580.755000px;}
.ycb{bottom:580.935000px;}
.y158{bottom:588.495000px;}
.y13c{bottom:590.655000px;}
.y6a{bottom:591.195000px;}
.y188{bottom:591.555000px;}
.y109{bottom:592.815000px;}
.y96{bottom:594.435000px;}
.y2c{bottom:594.615000px;}
.yca{bottom:602.715000px;}
.y157{bottom:605.595000px;}
.y108{bottom:605.775000px;}
.y13b{bottom:606.855000px;}
.y1b2{bottom:607.215000px;}
.y2b{bottom:608.475000px;}
.y187{bottom:608.835000px;}
.y95{bottom:611.715000px;}
.y13a{bottom:618.375000px;}
.yc9{bottom:619.995000px;}
.y2a{bottom:622.155000px;}
.y156{bottom:622.875000px;}
.y107{bottom:623.055000px;}
.y69{bottom:625.755000px;}
.y186{bottom:625.935000px;}
.y94{bottom:628.995000px;}
.y139{bottom:635.655000px;}
.y29{bottom:636.015000px;}
.yc8{bottom:637.275000px;}
.y155{bottom:640.155000px;}
.y106{bottom:640.335000px;}
.y68{bottom:643.035000px;}
.y185{bottom:643.215000px;}
.y93{bottom:646.275000px;}
.y28{bottom:649.875000px;}
.y131{bottom:653.655000px;}
.y105{bottom:654.375000px;}
.yc7{bottom:654.555000px;}
.y154{bottom:657.435000px;}
.y67{bottom:660.315000px;}
.y184{bottom:660.495000px;}
.y138{bottom:661.575000px;}
.y27{bottom:663.555000px;}
.y130{bottom:665.175000px;}
.yc6{bottom:671.865000px;}
.y153{bottom:674.745000px;}
.y26{bottom:677.445000px;}
.y66{bottom:677.625000px;}
.y183{bottom:677.805000px;}
.y92{bottom:680.865000px;}
.y12f{bottom:682.485000px;}
.yc5{bottom:688.965000px;}
.y25{bottom:691.305000px;}
.y152{bottom:692.025000px;}
.y65{bottom:694.725000px;}
.y182{bottom:695.085000px;}
.y91{bottom:697.965000px;}
.y12e{bottom:699.765000px;}
.y24{bottom:704.985000px;}
.yc4{bottom:706.245000px;}
.y151{bottom:709.125000px;}
.y64{bottom:712.005000px;}
.y181{bottom:712.365000px;}
.y90{bottom:715.245000px;}
.y12d{bottom:717.045000px;}
.y23{bottom:718.845000px;}
.yc3{bottom:723.525000px;}
.y150{bottom:726.405000px;}
.y63{bottom:729.285000px;}
.y180{bottom:729.465000px;}
.y8f{bottom:732.525000px;}
.y22{bottom:732.705000px;}
.y12c{bottom:734.325000px;}
.yc2{bottom:740.805000px;}
.y14f{bottom:743.685000px;}
.y21{bottom:746.385000px;}
.y62{bottom:746.565000px;}
.y17f{bottom:746.745000px;}
.y8e{bottom:749.805000px;}
.y12b{bottom:750.705000px;}
.yc1{bottom:758.085000px;}
.y20{bottom:760.245000px;}
.y12a{bottom:763.665000px;}
.y61{bottom:763.845000px;}
.y17e{bottom:764.025000px;}
.y8d{bottom:767.085000px;}
.y14e{bottom:769.605000px;}
.y1f{bottom:774.105000px;}
.yc0{bottom:775.365000px;}
.y129{bottom:778.425000px;}
.y60{bottom:781.125000px;}
.y17d{bottom:781.305000px;}
.y8c{bottom:784.365000px;}
.y1e{bottom:787.785000px;}
.ybf{bottom:792.465000px;}
.y128{bottom:792.825000px;}
.y17c{bottom:798.585000px;}
.y5f{bottom:799.305000px;}
.y8b{bottom:801.465000px;}
.y1d{bottom:801.645000px;}
.y127{bottom:807.405000px;}
.ybe{bottom:809.745000px;}
.y1c{bottom:815.505000px;}
.y17b{bottom:815.865000px;}
.y5e{bottom:816.585000px;}
.y8a{bottom:818.745000px;}
.y126{bottom:821.985000px;}
.ybd{bottom:827.025000px;}
.y1b{bottom:829.185000px;}
.y17a{bottom:832.965000px;}
.y5d{bottom:833.865000px;}
.y89{bottom:836.025000px;}
.y120{bottom:836.565000px;}
.ybc{bottom:844.305000px;}
.y1a{bottom:846.285000px;}
.y179{bottom:850.245000px;}
.y5c{bottom:852.225000px;}
.y88{bottom:853.305000px;}
.ybb{bottom:861.585000px;}
.y19{bottom:863.565000px;}
.y178{bottom:867.525000px;}
.y5b{bottom:869.505000px;}
.y87{bottom:870.585000px;}
.y137{bottom:873.465000px;}
.yba{bottom:878.685000px;}
.y18{bottom:880.845000px;}
.y136{bottom:884.805000px;}
.y5a{bottom:887.685000px;}
.yb9{bottom:895.965000px;}
.y17{bottom:898.125000px;}
.y177{bottom:902.085000px;}
.y59{bottom:904.965000px;}
.y11f{bottom:908.430000px;}
.yb8{bottom:913.290000px;}
.y16{bottom:915.450000px;}
.y176{bottom:919.230000px;}
.y58{bottom:922.290000px;}
.y11e{bottom:924.990000px;}
.yb7{bottom:930.570000px;}
.y15{bottom:932.730000px;}
.y175{bottom:936.510000px;}
.y57{bottom:939.570000px;}
.ye4{bottom:946.050000px;}
.yb6{bottom:947.850000px;}
.y14{bottom:949.830000px;}
.y174{bottom:953.790000px;}
.y56{bottom:956.850000px;}
.ye3{bottom:963.330000px;}
.yb5{bottom:965.130000px;}
.y13{bottom:967.830000px;}
.y173{bottom:971.070000px;}
.y55{bottom:974.130000px;}
.ye2{bottom:980.610000px;}
.yb4{bottom:986.730000px;}
.y172{bottom:988.350000px;}
.y12{bottom:988.530000px;}
.y54{bottom:991.230000px;}
.ye1{bottom:997.890000px;}
.y171{bottom:1005.630000px;}
.y53{bottom:1008.510000px;}
.y11{bottom:1009.230000px;}
.y104{bottom:1010.130000px;}
.ye0{bottom:1011.930000px;}
.y170{bottom:1022.730000px;}
.y103{bottom:1024.710000px;}
.y52{bottom:1025.790000px;}
.y10{bottom:1029.930000px;}
.y16f{bottom:1040.010000px;}
.y102{bottom:1041.990000px;}
.y51{bottom:1043.070000px;}
.yf{bottom:1050.630000px;}
.y16e{bottom:1057.290000px;}
.y101{bottom:1059.270000px;}
.y50{bottom:1060.350000px;}
.y16d{bottom:1074.570000px;}
.y100{bottom:1076.550000px;}
.y4f{bottom:1077.630000px;}
.y16c{bottom:1091.850000px;}
.ye{bottom:1092.030000px;}
.y4e{bottom:1094.730000px;}
.y16b{bottom:1109.130000px;}
.yd{bottom:1112.010000px;}
.y16a{bottom:1126.230000px;}
.yc{bottom:1129.290000px;}
.y169{bottom:1143.510000px;}
.yb{bottom:1146.570000px;}
.y168{bottom:1163.700000px;}
.ya{bottom:1163.880000px;}
.y5{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h1e{height:5.653125px;}
.h1b{height:13.680000px;}
.h19{height:13.860000px;}
.h1f{height:15.480000px;}
.h22{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h1d{height:29.678906px;}
.h3{height:31.564687px;}
.h10{height:34.884492px;}
.h25{height:35.100000px;}
.h1c{height:35.332031px;}
.h17{height:40.985156px;}
.h1a{height:41.400000px;}
.h11{height:43.215117px;}
.hf{height:47.321367px;}
.h6{height:47.344922px;}
.h26{height:48.616875px;}
.h9{height:50.068125px;}
.h20{height:52.971680px;}
.h4{height:52.998047px;}
.h24{height:53.709961px;}
.h18{height:55.980000px;}
.he{height:58.621992px;}
.hb{height:58.651172px;}
.h12{height:60.226875px;}
.h15{height:61.423863px;}
.h21{height:62.100000px;}
.h23{height:62.136000px;}
.h13{height:62.316000px;}
.ha{height:65.884219px;}
.hc{height:70.664062px;}
.hd{height:72.562500px;}
.h16{height:82.676953px;}
.h14{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.wc{width:42.660000px;}
.w7{width:62.100000px;}
.wf{width:83.160000px;}
.w12{width:83.376000px;}
.w14{width:84.960000px;}
.w11{width:116.280000px;}
.w10{width:116.316000px;}
.w3{width:157.530000px;}
.w8{width:228.990000px;}
.w4{width:253.110000px;}
.w2{width:269.670000px;}
.wd{width:317.190000px;}
.we{width:317.415000px;}
.wa{width:434.415000px;}
.w15{width:595.545000px;}
.w13{width:682.485000px;}
.wb{width:688.785000px;}
.w6{width:691.125000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:1.980000px;}
.x3f{left:5.220000px;}
.x2{left:8.100000px;}
.x17{left:9.360000px;}
.x2d{left:10.800000px;}
.x2e{left:12.240000px;}
.x21{left:15.660000px;}
.x2c{left:18.360000px;}
.x25{left:19.440000px;}
.x29{left:21.780000px;}
.x24{left:25.200000px;}
.x27{left:29.160000px;}
.x4{left:35.640000px;}
.x6{left:50.040000px;}
.x3b{left:55.074000px;}
.x19{left:74.160000px;}
.x22{left:98.100000px;}
.x14{left:101.376000px;}
.x15{left:104.256000px;}
.x1{left:106.416000px;}
.x3d{left:114.516000px;}
.x13{left:127.655987px;}
.xb{left:133.055987px;}
.x20{left:149.795987px;}
.x3a{left:159.869987px;}
.x12{left:162.929987px;}
.x3e{left:199.470000px;}
.x37{left:210.449987px;}
.x33{left:212.249987px;}
.x26{left:234.570000px;}
.x35{left:237.449987px;}
.x31{left:243.749987px;}
.xc{left:285.014987px;}
.x9{left:288.074987px;}
.x1d{left:295.094987px;}
.x1b{left:298.694987px;}
.x38{left:331.239000px;}
.x16{left:333.255000px;}
.x8{left:334.839000px;}
.x28{left:351.615000px;}
.x18{left:354.495000px;}
.x3{left:376.095000px;}
.xd{left:414.254987px;}
.x39{left:418.574987px;}
.xe{left:442.874987px;}
.xa{left:446.474987px;}
.x30{left:449.354987px;}
.x1f{left:457.094987px;}
.x23{left:468.615000px;}
.x1a{left:518.504987px;}
.x5{left:533.625000px;}
.x2a{left:552.705000px;}
.xf{left:596.984987px;}
.x10{left:623.264987px;}
.x11{left:661.244987px;}
.x36{left:666.644987px;}
.x2b{left:669.705000px;}
.x34{left:683.429987px;}
.x32{left:735.809987px;}
.x1e{left:761.729987px;}
.x2f{left:766.049987px;}
.x1c{left:775.049987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls41{letter-spacing:-0.656000pt;}
.ls3f{letter-spacing:-0.544000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls40{letter-spacing:-0.016000pt;}
.lse{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.016000pt;}
.ls38{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls29{letter-spacing:0.052480pt;}
.ls2e{letter-spacing:0.094933pt;}
.ls3a{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls39{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.137600pt;}
.ls14{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.186880pt;}
.ls3c{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls43{letter-spacing:0.239467pt;}
.ls36{letter-spacing:0.239787pt;}
.ls3d{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls2b{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.281600pt;}
.ls24{letter-spacing:0.294933pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.592000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.933333pt;}
.ls32{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls23{letter-spacing:2.080000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:3.360000pt;}
.lsb{letter-spacing:4.000000pt;}
.lsc{letter-spacing:4.800000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls13{letter-spacing:7.632640pt;}
.ls1c{letter-spacing:8.480000pt;}
.ls1b{letter-spacing:9.120000pt;}
.ls28{letter-spacing:9.760000pt;}
.ls5{letter-spacing:10.400000pt;}
.lsa{letter-spacing:12.158080pt;}
.ls33{letter-spacing:13.392640pt;}
.ls18{letter-spacing:14.240000pt;}
.ls6{letter-spacing:14.880000pt;}
.ls2d{letter-spacing:15.520000pt;}
.ls34{letter-spacing:16.160000pt;}
.ls15{letter-spacing:17.440000pt;}
.ls22{letter-spacing:18.080000pt;}
.ls17{letter-spacing:19.360000pt;}
.ls16{letter-spacing:19.520000pt;}
.ls1f{letter-spacing:20.640000pt;}
.ls30{letter-spacing:20.800000pt;}
.ls12{letter-spacing:23.200000pt;}
.ls9{letter-spacing:23.840000pt;}
.ls1e{letter-spacing:34.720000pt;}
.ls2f{letter-spacing:39.611307pt;}
.ls4{letter-spacing:49.920000pt;}
.ls20{letter-spacing:359.200000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws17{word-spacing:-48.416000pt;}
.ws16{word-spacing:-48.240000pt;}
.ws15{word-spacing:-48.000000pt;}
.ws7{word-spacing:-14.471680pt;}
.ws11{word-spacing:-14.240000pt;}
.wsb{word-spacing:-14.213333pt;}
.wsf{word-spacing:-13.872000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.574933pt;}
.ws14{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.417600pt;}
.ws12{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.wse{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws21{word-spacing:-12.160000pt;}
.ws20{word-spacing:-12.112000pt;}
.ws19{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-12.016000pt;}
.ws18{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.984000pt;}
.ws1f{word-spacing:-11.904000pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws1d{word-spacing:-11.344000pt;}
.ws23{word-spacing:-11.040000pt;}
.ws22{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws0{word-spacing:-8.945920pt;}
.ws6{word-spacing:-7.095040pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-3.767680pt;}
._5{margin-left:-2.824747pt;}
._3{margin-left:-1.843840pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._d{width:2.501333pt;}
._14{width:3.605973pt;}
._a{width:4.759680pt;}
._b{width:5.861973pt;}
._c{width:7.329280pt;}
._4{width:8.275840pt;}
._2{width:9.416533pt;}
._24{width:10.423893pt;}
._e{width:11.898880pt;}
._7{width:12.906880pt;}
._8{width:13.920213pt;}
._9{width:14.980267pt;}
._12{width:16.001280pt;}
._13{width:16.977707pt;}
._16{width:18.060800pt;}
._17{width:19.186987pt;}
._11{width:20.458880pt;}
._10{width:21.669120pt;}
._15{width:22.598187pt;}
._f{width:24.090027pt;}
._21{width:25.072640pt;}
._20{width:26.081920pt;}
._23{width:27.303680pt;}
._22{width:28.312960pt;}
._1f{width:29.587840pt;}
._19{width:31.353173pt;}
._18{width:32.456320pt;}
._25{width:34.787840pt;}
._1b{width:35.843200pt;}
._1a{width:36.971520pt;}
._1d{width:38.046293pt;}
._1c{width:38.990080pt;}
._1e{width:40.090240pt;}
._26{width:47.914240pt;}
._27{width:721.226667pt;}
._28{width:832.106667pt;}
.fsc{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fs9{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1d1{bottom:2.080000pt;}
.y123{bottom:2.240000pt;}
.y1b4{bottom:2.560000pt;}
.y1bb{bottom:2.720000pt;}
.y4b{bottom:3.720000pt;}
.y3{bottom:3.840000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.y4d{bottom:6.400000pt;}
.y4c{bottom:10.720000pt;}
.y125{bottom:14.400000pt;}
.y1d2{bottom:14.560000pt;}
.y122{bottom:14.880000pt;}
.y1b8{bottom:16.320000pt;}
.y1bf{bottom:16.480000pt;}
.y124{bottom:26.720000pt;}
.y121{bottom:27.040000pt;}
.y9{bottom:29.280000pt;}
.y1b7{bottom:30.240000pt;}
.y1be{bottom:30.280000pt;}
.y7{bottom:43.200000pt;}
.y1b6{bottom:44.000000pt;}
.y1bd{bottom:44.040000pt;}
.y6{bottom:64.800000pt;}
.y1d3{bottom:79.040000pt;}
.y14d{bottom:79.360000pt;}
.y1d0{bottom:80.320000pt;}
.yb3{bottom:80.960000pt;}
.y11d{bottom:83.040000pt;}
.yff{bottom:85.600000pt;}
.y86{bottom:88.160000pt;}
.ydf{bottom:92.640000pt;}
.y135{bottom:93.280000pt;}
.y1b1{bottom:93.760000pt;}
.y14c{bottom:94.720000pt;}
.y167{bottom:95.520000pt;}
.yb2{bottom:96.160000pt;}
.y11c{bottom:98.400000pt;}
.yfe{bottom:100.800000pt;}
.y85{bottom:103.520000pt;}
.y19f{bottom:106.400000pt;}
.y49{bottom:108.000000pt;}
.y134{bottom:108.640000pt;}
.y1b0{bottom:109.120000pt;}
.y166{bottom:110.880000pt;}
.yb1{bottom:111.520000pt;}
.y11b{bottom:113.760000pt;}
.y1cf{bottom:114.400000pt;}
.y14b{bottom:114.880000pt;}
.yfd{bottom:117.120000pt;}
.y84{bottom:118.880000pt;}
.y19e{bottom:121.760000pt;}
.y48{bottom:123.360000pt;}
.y1af{bottom:124.480000pt;}
.y165{bottom:126.240000pt;}
.yb0{bottom:126.880000pt;}
.y11a{bottom:129.120000pt;}
.y1ce{bottom:129.760000pt;}
.y133{bottom:131.840000pt;}
.yfc{bottom:132.480000pt;}
.y83{bottom:134.240000pt;}
.y19d{bottom:137.120000pt;}
.y47{bottom:138.720000pt;}
.y1ae{bottom:139.680000pt;}
.y164{bottom:141.600000pt;}
.yaf{bottom:142.240000pt;}
.y119{bottom:144.480000pt;}
.y1cd{bottom:145.120000pt;}
.yfb{bottom:147.840000pt;}
.y82{bottom:149.600000pt;}
.y19c{bottom:152.480000pt;}
.y46{bottom:154.080000pt;}
.y1ad{bottom:155.040000pt;}
.y163{bottom:156.960000pt;}
.yae{bottom:157.600000pt;}
.y118{bottom:159.840000pt;}
.y1cc{bottom:160.480000pt;}
.yfa{bottom:164.186667pt;}
.y81{bottom:164.986667pt;}
.y19b{bottom:167.706667pt;}
.y45{bottom:169.306667pt;}
.y1ac{bottom:170.426667pt;}
.y162{bottom:172.346667pt;}
.yad{bottom:172.986667pt;}
.y117{bottom:175.066667pt;}
.y1cb{bottom:175.706667pt;}
.yf9{bottom:179.386667pt;}
.y80{bottom:180.186667pt;}
.y19a{bottom:183.066667pt;}
.y44{bottom:184.666667pt;}
.y1ab{bottom:185.786667pt;}
.y161{bottom:187.546667pt;}
.yac{bottom:188.186667pt;}
.y116{bottom:190.426667pt;}
.y1ca{bottom:191.066667pt;}
.yf8{bottom:194.746667pt;}
.y7f{bottom:195.546667pt;}
.y199{bottom:198.426667pt;}
.y43{bottom:200.026667pt;}
.y1aa{bottom:201.146667pt;}
.y160{bottom:202.906667pt;}
.yab{bottom:203.546667pt;}
.y115{bottom:205.786667pt;}
.y1c9{bottom:206.426667pt;}
.yf7{bottom:210.106667pt;}
.y7e{bottom:210.906667pt;}
.y198{bottom:213.786667pt;}
.y42{bottom:215.386667pt;}
.yde{bottom:216.346667pt;}
.y1a9{bottom:216.506667pt;}
.y15f{bottom:218.266667pt;}
.yaa{bottom:218.906667pt;}
.y114{bottom:221.146667pt;}
.y1c8{bottom:221.786667pt;}
.yf6{bottom:225.466667pt;}
.y7d{bottom:226.266667pt;}
.y197{bottom:229.146667pt;}
.y41{bottom:230.746667pt;}
.y1a8{bottom:231.706667pt;}
.ydd{bottom:232.666667pt;}
.y15e{bottom:233.626667pt;}
.ya9{bottom:234.266667pt;}
.y113{bottom:236.506667pt;}
.y1c7{bottom:237.146667pt;}
.yf5{bottom:240.826667pt;}
.y7c{bottom:241.626667pt;}
.y196{bottom:244.506667pt;}
.y40{bottom:246.106667pt;}
.y1a7{bottom:247.066667pt;}
.ydc{bottom:248.826667pt;}
.y15d{bottom:248.986667pt;}
.ya8{bottom:249.626667pt;}
.y112{bottom:251.866667pt;}
.y1c6{bottom:252.506667pt;}
.yf4{bottom:256.186667pt;}
.y7b{bottom:256.826667pt;}
.y195{bottom:259.706667pt;}
.y3f{bottom:261.306667pt;}
.y1a6{bottom:262.426667pt;}
.y15c{bottom:264.346667pt;}
.ya7{bottom:264.826667pt;}
.ydb{bottom:265.146667pt;}
.y111{bottom:267.066667pt;}
.y1c5{bottom:267.706667pt;}
.yf3{bottom:271.386667pt;}
.y7a{bottom:272.186667pt;}
.y194{bottom:275.066667pt;}
.y3e{bottom:276.666667pt;}
.y1a5{bottom:277.786667pt;}
.y15b{bottom:279.546667pt;}
.ya6{bottom:280.186667pt;}
.yda{bottom:280.506667pt;}
.y110{bottom:282.426667pt;}
.y1c4{bottom:283.066667pt;}
.yf2{bottom:286.746667pt;}
.y79{bottom:287.546667pt;}
.y193{bottom:290.426667pt;}
.y3d{bottom:292.026667pt;}
.y1a4{bottom:293.146667pt;}
.ya5{bottom:295.546667pt;}
.yd9{bottom:295.866667pt;}
.y10f{bottom:297.786667pt;}
.y1c3{bottom:298.426667pt;}
.yf1{bottom:302.106667pt;}
.y15a{bottom:302.746667pt;}
.y78{bottom:302.906667pt;}
.y132{bottom:307.226667pt;}
.y3c{bottom:307.386667pt;}
.y1a3{bottom:308.506667pt;}
.ya4{bottom:310.906667pt;}
.yd8{bottom:312.186667pt;}
.y10e{bottom:313.146667pt;}
.y1c2{bottom:313.786667pt;}
.y14a{bottom:315.546667pt;}
.yf0{bottom:317.466667pt;}
.y77{bottom:318.266667pt;}
.y3b{bottom:322.746667pt;}
.y1a2{bottom:323.706667pt;}
.y149{bottom:325.786667pt;}
.ya3{bottom:326.266667pt;}
.yd7{bottom:327.546667pt;}
.y10d{bottom:328.506667pt;}
.y1c1{bottom:329.146667pt;}
.y76{bottom:333.626667pt;}
.yef{bottom:334.586667pt;}
.y3a{bottom:338.106667pt;}
.y192{bottom:339.066667pt;}
.y148{bottom:340.986667pt;}
.ya2{bottom:341.626667pt;}
.yd6{bottom:342.746667pt;}
.y10c{bottom:343.706667pt;}
.y1c0{bottom:344.506667pt;}
.y75{bottom:348.826667pt;}
.yee{bottom:349.786667pt;}
.y39{bottom:353.306667pt;}
.y147{bottom:356.346667pt;}
.y1bc{bottom:356.826667pt;}
.ya1{bottom:357.786667pt;}
.yd5{bottom:359.066667pt;}
.y74{bottom:364.186667pt;}
.yed{bottom:365.146667pt;}
.y38{bottom:368.666667pt;}
.y146{bottom:371.706667pt;}
.ya0{bottom:373.146667pt;}
.y4a{bottom:374.106667pt;}
.yd4{bottom:374.426667pt;}
.yec{bottom:380.546667pt;}
.y73{bottom:383.586667pt;}
.y37{bottom:384.066667pt;}
.y145{bottom:387.106667pt;}
.y191{bottom:387.746667pt;}
.y9f{bottom:388.546667pt;}
.yd3{bottom:389.826667pt;}
.yeb{bottom:395.906667pt;}
.y36{bottom:399.426667pt;}
.y144{bottom:402.466667pt;}
.y72{bottom:402.946667pt;}
.y190{bottom:403.106667pt;}
.y9e{bottom:403.906667pt;}
.yd2{bottom:405.186667pt;}
.yea{bottom:411.266667pt;}
.y1ba{bottom:412.066667pt;}
.y35{bottom:414.786667pt;}
.y143{bottom:417.826667pt;}
.y71{bottom:418.306667pt;}
.y18f{bottom:418.466667pt;}
.y9d{bottom:420.226667pt;}
.yd1{bottom:420.386667pt;}
.y10b{bottom:420.546667pt;}
.y1b9{bottom:425.986667pt;}
.ye9{bottom:426.626667pt;}
.y34{bottom:429.346667pt;}
.y142{bottom:433.026667pt;}
.y70{bottom:433.666667pt;}
.y18e{bottom:433.826667pt;}
.y9c{bottom:435.586667pt;}
.yd0{bottom:435.746667pt;}
.y1a1{bottom:436.386667pt;}
.y1b5{bottom:439.746667pt;}
.ye8{bottom:441.826667pt;}
.y33{bottom:442.626667pt;}
.y141{bottom:448.386667pt;}
.y6f{bottom:448.866667pt;}
.y18d{bottom:449.186667pt;}
.y9b{bottom:450.786667pt;}
.ycf{bottom:451.106667pt;}
.y1a0{bottom:451.746667pt;}
.y32{bottom:454.946667pt;}
.ye7{bottom:457.186667pt;}
.y140{bottom:463.746667pt;}
.y6e{bottom:464.226667pt;}
.y18c{bottom:464.386667pt;}
.yce{bottom:466.466667pt;}
.y9a{bottom:467.106667pt;}
.y31{bottom:467.266667pt;}
.ye6{bottom:472.546667pt;}
.y13f{bottom:479.106667pt;}
.y30{bottom:479.426667pt;}
.y6d{bottom:479.586667pt;}
.y18b{bottom:479.746667pt;}
.ycd{bottom:481.826667pt;}
.y99{bottom:482.466667pt;}
.y2f{bottom:491.746667pt;}
.y13e{bottom:494.466667pt;}
.y6c{bottom:494.946667pt;}
.y18a{bottom:495.106667pt;}
.ye5{bottom:495.746667pt;}
.ycc{bottom:497.186667pt;}
.y98{bottom:497.826667pt;}
.y2e{bottom:504.066667pt;}
.y159{bottom:507.746667pt;}
.y13d{bottom:509.826667pt;}
.y6b{bottom:510.306667pt;}
.y189{bottom:510.466667pt;}
.y1b3{bottom:511.586667pt;}
.y10a{bottom:512.546667pt;}
.y97{bottom:513.186667pt;}
.y2d{bottom:516.226667pt;}
.ycb{bottom:516.386667pt;}
.y158{bottom:523.106667pt;}
.y13c{bottom:525.026667pt;}
.y6a{bottom:525.506667pt;}
.y188{bottom:525.826667pt;}
.y109{bottom:526.946667pt;}
.y96{bottom:528.386667pt;}
.y2c{bottom:528.546667pt;}
.yca{bottom:535.746667pt;}
.y157{bottom:538.306667pt;}
.y108{bottom:538.466667pt;}
.y13b{bottom:539.426667pt;}
.y1b2{bottom:539.746667pt;}
.y2b{bottom:540.866667pt;}
.y187{bottom:541.186667pt;}
.y95{bottom:543.746667pt;}
.y13a{bottom:549.666667pt;}
.yc9{bottom:551.106667pt;}
.y2a{bottom:553.026667pt;}
.y156{bottom:553.666667pt;}
.y107{bottom:553.826667pt;}
.y69{bottom:556.226667pt;}
.y186{bottom:556.386667pt;}
.y94{bottom:559.106667pt;}
.y139{bottom:565.026667pt;}
.y29{bottom:565.346667pt;}
.yc8{bottom:566.466667pt;}
.y155{bottom:569.026667pt;}
.y106{bottom:569.186667pt;}
.y68{bottom:571.586667pt;}
.y185{bottom:571.746667pt;}
.y93{bottom:574.466667pt;}
.y28{bottom:577.666667pt;}
.y131{bottom:581.026667pt;}
.y105{bottom:581.666667pt;}
.yc7{bottom:581.826667pt;}
.y154{bottom:584.386667pt;}
.y67{bottom:586.946667pt;}
.y184{bottom:587.106667pt;}
.y138{bottom:588.066667pt;}
.y27{bottom:589.826667pt;}
.y130{bottom:591.266667pt;}
.yc6{bottom:597.213333pt;}
.y153{bottom:599.773333pt;}
.y26{bottom:602.173333pt;}
.y66{bottom:602.333333pt;}
.y183{bottom:602.493333pt;}
.y92{bottom:605.213333pt;}
.y12f{bottom:606.653333pt;}
.yc5{bottom:612.413333pt;}
.y25{bottom:614.493333pt;}
.y152{bottom:615.133333pt;}
.y65{bottom:617.533333pt;}
.y182{bottom:617.853333pt;}
.y91{bottom:620.413333pt;}
.y12e{bottom:622.013333pt;}
.y24{bottom:626.653333pt;}
.yc4{bottom:627.773333pt;}
.y151{bottom:630.333333pt;}
.y64{bottom:632.893333pt;}
.y181{bottom:633.213333pt;}
.y90{bottom:635.773333pt;}
.y12d{bottom:637.373333pt;}
.y23{bottom:638.973333pt;}
.yc3{bottom:643.133333pt;}
.y150{bottom:645.693333pt;}
.y63{bottom:648.253333pt;}
.y180{bottom:648.413333pt;}
.y8f{bottom:651.133333pt;}
.y22{bottom:651.293333pt;}
.y12c{bottom:652.733333pt;}
.yc2{bottom:658.493333pt;}
.y14f{bottom:661.053333pt;}
.y21{bottom:663.453333pt;}
.y62{bottom:663.613333pt;}
.y17f{bottom:663.773333pt;}
.y8e{bottom:666.493333pt;}
.y12b{bottom:667.293333pt;}
.yc1{bottom:673.853333pt;}
.y20{bottom:675.773333pt;}
.y12a{bottom:678.813333pt;}
.y61{bottom:678.973333pt;}
.y17e{bottom:679.133333pt;}
.y8d{bottom:681.853333pt;}
.y14e{bottom:684.093333pt;}
.y1f{bottom:688.093333pt;}
.yc0{bottom:689.213333pt;}
.y129{bottom:691.933333pt;}
.y60{bottom:694.333333pt;}
.y17d{bottom:694.493333pt;}
.y8c{bottom:697.213333pt;}
.y1e{bottom:700.253333pt;}
.ybf{bottom:704.413333pt;}
.y128{bottom:704.733333pt;}
.y17c{bottom:709.853333pt;}
.y5f{bottom:710.493333pt;}
.y8b{bottom:712.413333pt;}
.y1d{bottom:712.573333pt;}
.y127{bottom:717.693333pt;}
.ybe{bottom:719.773333pt;}
.y1c{bottom:724.893333pt;}
.y17b{bottom:725.213333pt;}
.y5e{bottom:725.853333pt;}
.y8a{bottom:727.773333pt;}
.y126{bottom:730.653333pt;}
.ybd{bottom:735.133333pt;}
.y1b{bottom:737.053333pt;}
.y17a{bottom:740.413333pt;}
.y5d{bottom:741.213333pt;}
.y89{bottom:743.133333pt;}
.y120{bottom:743.613333pt;}
.ybc{bottom:750.493333pt;}
.y1a{bottom:752.253333pt;}
.y179{bottom:755.773333pt;}
.y5c{bottom:757.533333pt;}
.y88{bottom:758.493333pt;}
.ybb{bottom:765.853333pt;}
.y19{bottom:767.613333pt;}
.y178{bottom:771.133333pt;}
.y5b{bottom:772.893333pt;}
.y87{bottom:773.853333pt;}
.y137{bottom:776.413333pt;}
.yba{bottom:781.053333pt;}
.y18{bottom:782.973333pt;}
.y136{bottom:786.493333pt;}
.y5a{bottom:789.053333pt;}
.yb9{bottom:796.413333pt;}
.y17{bottom:798.333333pt;}
.y177{bottom:801.853333pt;}
.y59{bottom:804.413333pt;}
.y11f{bottom:807.493333pt;}
.yb8{bottom:811.813333pt;}
.y16{bottom:813.733333pt;}
.y176{bottom:817.093333pt;}
.y58{bottom:819.813333pt;}
.y11e{bottom:822.213333pt;}
.yb7{bottom:827.173333pt;}
.y15{bottom:829.093333pt;}
.y175{bottom:832.453333pt;}
.y57{bottom:835.173333pt;}
.ye4{bottom:840.933333pt;}
.yb6{bottom:842.533333pt;}
.y14{bottom:844.293333pt;}
.y174{bottom:847.813333pt;}
.y56{bottom:850.533333pt;}
.ye3{bottom:856.293333pt;}
.yb5{bottom:857.893333pt;}
.y13{bottom:860.293333pt;}
.y173{bottom:863.173333pt;}
.y55{bottom:865.893333pt;}
.ye2{bottom:871.653333pt;}
.yb4{bottom:877.093333pt;}
.y172{bottom:878.533333pt;}
.y12{bottom:878.693333pt;}
.y54{bottom:881.093333pt;}
.ye1{bottom:887.013333pt;}
.y171{bottom:893.893333pt;}
.y53{bottom:896.453333pt;}
.y11{bottom:897.093333pt;}
.y104{bottom:897.893333pt;}
.ye0{bottom:899.493333pt;}
.y170{bottom:909.093333pt;}
.y103{bottom:910.853333pt;}
.y52{bottom:911.813333pt;}
.y10{bottom:915.493333pt;}
.y16f{bottom:924.453333pt;}
.y102{bottom:926.213333pt;}
.y51{bottom:927.173333pt;}
.yf{bottom:933.893333pt;}
.y16e{bottom:939.813333pt;}
.y101{bottom:941.573333pt;}
.y50{bottom:942.533333pt;}
.y16d{bottom:955.173333pt;}
.y100{bottom:956.933333pt;}
.y4f{bottom:957.893333pt;}
.y16c{bottom:970.533333pt;}
.ye{bottom:970.693333pt;}
.y4e{bottom:973.093333pt;}
.y16b{bottom:985.893333pt;}
.yd{bottom:988.453333pt;}
.y16a{bottom:1001.093333pt;}
.yc{bottom:1003.813333pt;}
.y169{bottom:1016.453333pt;}
.yb{bottom:1019.173333pt;}
.y168{bottom:1034.400000pt;}
.ya{bottom:1034.560000pt;}
.y5{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h1e{height:5.025000pt;}
.h1b{height:12.160000pt;}
.h19{height:12.320000pt;}
.h1f{height:13.760000pt;}
.h22{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h1d{height:26.381250pt;}
.h3{height:28.057500pt;}
.h10{height:31.008437pt;}
.h25{height:31.200000pt;}
.h1c{height:31.406250pt;}
.h17{height:36.431250pt;}
.h1a{height:36.800000pt;}
.h11{height:38.413438pt;}
.hf{height:42.063437pt;}
.h6{height:42.084375pt;}
.h26{height:43.215000pt;}
.h9{height:44.505000pt;}
.h20{height:47.085938pt;}
.h4{height:47.109375pt;}
.h24{height:47.742188pt;}
.h18{height:49.760000pt;}
.he{height:52.108438pt;}
.hb{height:52.134375pt;}
.h12{height:53.535000pt;}
.h15{height:54.598989pt;}
.h21{height:55.200000pt;}
.h23{height:55.232000pt;}
.h13{height:55.392000pt;}
.ha{height:58.563750pt;}
.hc{height:62.812500pt;}
.hd{height:64.500000pt;}
.h16{height:73.490625pt;}
.h14{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.wc{width:37.920000pt;}
.w7{width:55.200000pt;}
.wf{width:73.920000pt;}
.w12{width:74.112000pt;}
.w14{width:75.520000pt;}
.w11{width:103.360000pt;}
.w10{width:103.392000pt;}
.w3{width:140.026667pt;}
.w8{width:203.546667pt;}
.w4{width:224.986667pt;}
.w2{width:239.706667pt;}
.wd{width:281.946667pt;}
.we{width:282.146667pt;}
.wa{width:386.146667pt;}
.w15{width:529.373333pt;}
.w13{width:606.653333pt;}
.wb{width:612.253333pt;}
.w6{width:614.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:1.760000pt;}
.x3f{left:4.640000pt;}
.x2{left:7.200000pt;}
.x17{left:8.320000pt;}
.x2d{left:9.600000pt;}
.x2e{left:10.880000pt;}
.x21{left:13.920000pt;}
.x2c{left:16.320000pt;}
.x25{left:17.280000pt;}
.x29{left:19.360000pt;}
.x24{left:22.400000pt;}
.x27{left:25.920000pt;}
.x4{left:31.680000pt;}
.x6{left:44.480000pt;}
.x3b{left:48.954667pt;}
.x19{left:65.920000pt;}
.x22{left:87.200000pt;}
.x14{left:90.112000pt;}
.x15{left:92.672000pt;}
.x1{left:94.592000pt;}
.x3d{left:101.792000pt;}
.x13{left:113.471988pt;}
.xb{left:118.271988pt;}
.x20{left:133.151988pt;}
.x3a{left:142.106655pt;}
.x12{left:144.826655pt;}
.x3e{left:177.306667pt;}
.x37{left:187.066655pt;}
.x33{left:188.666655pt;}
.x26{left:208.506667pt;}
.x35{left:211.066655pt;}
.x31{left:216.666655pt;}
.xc{left:253.346655pt;}
.x9{left:256.066655pt;}
.x1d{left:262.306655pt;}
.x1b{left:265.506655pt;}
.x38{left:294.434667pt;}
.x16{left:296.226667pt;}
.x8{left:297.634667pt;}
.x28{left:312.546667pt;}
.x18{left:315.106667pt;}
.x3{left:334.306667pt;}
.xd{left:368.226655pt;}
.x39{left:372.066655pt;}
.xe{left:393.666655pt;}
.xa{left:396.866655pt;}
.x30{left:399.426655pt;}
.x1f{left:406.306655pt;}
.x23{left:416.546667pt;}
.x1a{left:460.893322pt;}
.x5{left:474.333333pt;}
.x2a{left:491.293333pt;}
.xf{left:530.653322pt;}
.x10{left:554.013322pt;}
.x11{left:587.773322pt;}
.x36{left:592.573322pt;}
.x2b{left:595.293333pt;}
.x34{left:607.493322pt;}
.x32{left:654.053322pt;}
.x1e{left:677.093322pt;}
.x2f{left:680.933322pt;}
.x1c{left:688.933322pt;}
.x7{left:699.333322pt;}
}




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