
    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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_cc049c29cd4f3c251418de0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c6aa1f36e82b90458dbba079.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_abb350e4063571f495c7f926.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_dd066d1a35b415fd9e77b74f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_ba5bc0702877eb1ce28c6980.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.147461;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_4d7f6707e7fefc78cb02d757.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_3a6ede098e0029a27da0dfae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.147461;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_0ea4e0a3e1762033ac191fa1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c76f596afb24e430461b2421.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.940000px;}
.v5{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:30.000000px;}
.ls1f{letter-spacing:-1.518000px;}
.ls20{letter-spacing:-1.482000px;}
.ls39{letter-spacing:-1.344000px;}
.ls2c{letter-spacing:-1.176000px;}
.ls1e{letter-spacing:-1.104000px;}
.ls13{letter-spacing:-1.020000px;}
.ls35{letter-spacing:-0.768000px;}
.ls11{letter-spacing:-0.684000px;}
.ls1d{letter-spacing:-0.586800px;}
.ls34{letter-spacing:-0.516000px;}
.ls12{letter-spacing:-0.510000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.348000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.156000px;}
.ls17{letter-spacing:-0.075000px;}
.ls33{letter-spacing:-0.036000px;}
.ls26{letter-spacing:-0.024000px;}
.ls28{letter-spacing:-0.018000px;}
.ls1a{letter-spacing:-0.015000px;}
.ls14{letter-spacing:-0.012000px;}
.ls10{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.006000px;}
.ls6{letter-spacing:0.012000px;}
.ls1c{letter-spacing:0.015000px;}
.ls22{letter-spacing:0.018000px;}
.ls25{letter-spacing:0.024000px;}
.ls2e{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.075000px;}
.ls2b{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.198000px;}
.lse{letter-spacing:0.228600px;}
.lsd{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.294000px;}
.ls2{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.312000px;}
.ls9{letter-spacing:0.318000px;}
.ls1{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.450000px;}
.ls18{letter-spacing:0.462000px;}
.ls4{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.510000px;}
.ls38{letter-spacing:0.564000px;}
.ls21{letter-spacing:0.648000px;}
.ls36{letter-spacing:0.660000px;}
.ls2f{letter-spacing:0.732000px;}
.ls1b{letter-spacing:0.804000px;}
.ls30{letter-spacing:1.476000px;}
.ls27{letter-spacing:1.488000px;}
.ls31{letter-spacing:1.596000px;}
.ls32{letter-spacing:1.656000px;}
.ls19{letter-spacing:2.490000px;}
.lsb{letter-spacing:2.652000px;}
.ls37{letter-spacing:9.156000px;}
.ls8{letter-spacing:61.812000px;}
.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;}
}
.ws2b{word-spacing:-48.000000px;}
.ws20{word-spacing:-28.032000px;}
.ws13{word-spacing:-19.152000px;}
.ws1b{word-spacing:-18.348000px;}
.ws1e{word-spacing:-16.680000px;}
.ws1d{word-spacing:-16.320000px;}
.ws2a{word-spacing:-15.036000px;}
.ws1c{word-spacing:-15.030000px;}
.ws6{word-spacing:-15.024000px;}
.ws1a{word-spacing:-15.012000px;}
.ws5{word-spacing:-15.000000px;}
.ws24{word-spacing:-14.994000px;}
.ws1f{word-spacing:-14.988000px;}
.ws25{word-spacing:-14.976000px;}
.ws11{word-spacing:-13.806000px;}
.wse{word-spacing:-13.656000px;}
.wsc{word-spacing:-13.632000px;}
.wsb{word-spacing:-13.614300px;}
.wsd{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.460700px;}
.wsa{word-spacing:-13.385700px;}
.ws8{word-spacing:-13.344000px;}
.ws10{word-spacing:-13.310700px;}
.ws9{word-spacing:-13.188000px;}
.ws22{word-spacing:-13.020000px;}
.ws21{word-spacing:-12.990000px;}
.ws2{word-spacing:-12.960000px;}
.ws26{word-spacing:-12.828000px;}
.ws14{word-spacing:-12.525000px;}
.ws3{word-spacing:-12.510000px;}
.ws12{word-spacing:-12.495000px;}
.ws15{word-spacing:-11.964900px;}
.ws0{word-spacing:-11.676000px;}
.ws4{word-spacing:-11.490000px;}
.ws16{word-spacing:-11.447700px;}
.ws18{word-spacing:-11.028000px;}
.ws17{word-spacing:-10.992000px;}
.ws1{word-spacing:-10.158000px;}
.ws23{word-spacing:-10.008000px;}
.ws27{word-spacing:-8.820000px;}
.ws7{word-spacing:-8.340000px;}
.ws28{word-spacing:-7.320000px;}
.ws29{word-spacing:-6.738000px;}
.ws19{word-spacing:0.000000px;}
._19{margin-left:-12.012000px;}
._1f{margin-left:-10.446000px;}
._1e{margin-left:-5.502000px;}
._6{margin-left:-4.140000px;}
._2{margin-left:-2.190000px;}
._0{margin-left:-1.176000px;}
._1{width:1.356000px;}
._3{width:3.252000px;}
._7{width:4.302000px;}
._4{width:5.328000px;}
._5{width:7.278000px;}
._8{width:8.892000px;}
._9{width:10.092000px;}
._a{width:11.268000px;}
._c{width:12.438000px;}
._14{width:13.698000px;}
._25{width:14.868000px;}
._d{width:16.416000px;}
._e{width:17.928000px;}
._1a{width:19.332000px;}
._b{width:20.874000px;}
._f{width:22.086000px;}
._13{width:23.232000px;}
._12{width:24.864000px;}
._1d{width:25.896000px;}
._17{width:27.054000px;}
._23{width:28.350000px;}
._24{width:29.700000px;}
._1b{width:31.536000px;}
._18{width:32.832000px;}
._1c{width:33.924000px;}
._22{width:34.986000px;}
._26{width:36.528000px;}
._10{width:37.620000px;}
._11{width:39.492000px;}
._15{width:40.968000px;}
._27{width:42.216000px;}
._16{width:46.230000px;}
._20{width:72.078000px;}
._21{width:73.920000px;}
.fc7{color:rgb(5,99,193);}
.fc8{color:transparent;}
.fc6{color:rgb(118,113,113);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc1{color:rgb(0,112,192);}
.fca{color:rgb(34,34,34);}
.fc9{color:rgb(1,2,5);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs14{font-size:12.000000px;}
.fs15{font-size:18.000000px;}
.fs11{font-size:21.000000px;}
.fs13{font-size:24.000000px;}
.fs16{font-size:27.000000px;}
.fsc{font-size:30.000000px;}
.fs10{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs12{font-size:45.150000px;}
.fsa{font-size:48.000000px;}
.fsf{font-size:48.150000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:54.150000px;}
.fs5{font-size:57.000000px;}
.fse{font-size:60.000000px;}
.fsd{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.y5{bottom:-7.500000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.800000px;}
.y14a{bottom:2.610000px;}
.ye1{bottom:2.625000px;}
.ye{bottom:3.675000px;}
.ye5{bottom:4.125000px;}
.yec{bottom:4.500000px;}
.ye3{bottom:4.875000px;}
.yfb{bottom:5.250000px;}
.yf9{bottom:5.280000px;}
.y104{bottom:5.625000px;}
.yff{bottom:6.000000px;}
.yf4{bottom:6.375000px;}
.y55{bottom:6.450000px;}
.yf7{bottom:6.750000px;}
.y125{bottom:7.125000px;}
.y123{bottom:7.500000px;}
.y146{bottom:9.375000px;}
.y151{bottom:9.750000px;}
.y14b{bottom:9.780000px;}
.yee{bottom:13.500000px;}
.yf2{bottom:14.250000px;}
.y102{bottom:16.125000px;}
.ye2{bottom:16.500000px;}
.y149{bottom:16.530000px;}
.yf6{bottom:17.250000px;}
.y4{bottom:17.625000px;}
.y148{bottom:19.155000px;}
.y54{bottom:19.575000px;}
.y153{bottom:23.625000px;}
.ydf{bottom:24.000000px;}
.y107{bottom:25.500000px;}
.y122{bottom:27.780000px;}
.ye7{bottom:29.250000px;}
.y53{bottom:32.325000px;}
.y52{bottom:45.450000px;}
.y57{bottom:56.662500px;}
.y51{bottom:58.245000px;}
.y50{bottom:71.370000px;}
.y4f{bottom:82.995000px;}
.y4e{bottom:88.245000px;}
.y2{bottom:93.787500px;}
.y3{bottom:121.537500px;}
.ybd{bottom:160.170000px;}
.y10c{bottom:162.030000px;}
.y141{bottom:162.405000px;}
.y166{bottom:163.170000px;}
.y8d{bottom:163.545000px;}
.y1bb{bottom:165.030000px;}
.y1a8{bottom:165.405000px;}
.y3f{bottom:166.545000px;}
.y10b{bottom:171.420000px;}
.y4c{bottom:171.780000px;}
.y10a{bottom:174.825000px;}
.ybc{bottom:175.950000px;}
.y181{bottom:177.450000px;}
.y140{bottom:178.200000px;}
.y165{bottom:178.575000px;}
.y1a7{bottom:178.950000px;}
.y3e{bottom:179.325000px;}
.y4b{bottom:187.200000px;}
.ybb{bottom:191.325000px;}
.y3d{bottom:192.450000px;}
.y1a6{bottom:192.825000px;}
.y109{bottom:193.200000px;}
.y13f{bottom:193.575000px;}
.y164{bottom:193.950000px;}
.y8c{bottom:194.700000px;}
.y4a{bottom:203.325000px;}
.y180{bottom:204.825000px;}
.y3c{bottom:205.200000px;}
.y1ba{bottom:206.325000px;}
.yba{bottom:206.700000px;}
.y13e{bottom:209.325000px;}
.y163{bottom:209.700000px;}
.y8b{bottom:210.450000px;}
.y108{bottom:211.200000px;}
.y3b{bottom:218.325000px;}
.y17f{bottom:218.700000px;}
.y1b9{bottom:220.200000px;}
.y1a5{bottom:220.575000px;}
.y49{bottom:221.700000px;}
.yb9{bottom:222.450000px;}
.y13d{bottom:224.700000px;}
.y162{bottom:225.075000px;}
.y8a{bottom:225.825000px;}
.y94{bottom:226.200000px;}
.y106{bottom:229.575000px;}
.y3a{bottom:231.075000px;}
.y17e{bottom:232.575000px;}
.y1b8{bottom:234.075000px;}
.y1a4{bottom:234.450000px;}
.y48{bottom:237.075000px;}
.yb8{bottom:237.825000px;}
.y161{bottom:239.700000px;}
.y13c{bottom:240.075000px;}
.y89{bottom:241.200000px;}
.y39{bottom:241.575000px;}
.y93{bottom:243.075000px;}
.y17d{bottom:246.825000px;}
.y1a3{bottom:247.950000px;}
.y47{bottom:249.825000px;}
.y4d{bottom:250.500000px;}
.yb7{bottom:253.575000px;}
.y13b{bottom:255.825000px;}
.y88{bottom:256.950000px;}
.y160{bottom:259.575000px;}
.y1b7{bottom:261.450000px;}
.y1a2{bottom:261.825000px;}
.y46{bottom:262.950000px;}
.y17c{bottom:264.450000px;}
.yb6{bottom:268.950000px;}
.y105{bottom:269.700000px;}
.y13a{bottom:271.200000px;}
.y87{bottom:272.325000px;}
.y15f{bottom:273.075000px;}
.y45{bottom:275.325000px;}
.y1a1{bottom:275.700000px;}
.y17b{bottom:282.825000px;}
.y15e{bottom:283.575000px;}
.yb5{bottom:284.325000px;}
.y44{bottom:285.450000px;}
.y139{bottom:286.950000px;}
.y86{bottom:288.075000px;}
.y1b6{bottom:289.200000px;}
.y1a0{bottom:289.575000px;}
.y103{bottom:289.950000px;}
.y43{bottom:298.200000px;}
.yb4{bottom:300.075000px;}
.y138{bottom:302.325000px;}
.y1b5{bottom:303.120000px;}
.y85{bottom:303.495000px;}
.y101{bottom:310.245000px;}
.y42{bottom:310.605000px;}
.y17a{bottom:313.980000px;}
.yb3{bottom:315.495000px;}
.y19f{bottom:316.995000px;}
.y137{bottom:317.730000px;}
.y41{bottom:318.105000px;}
.y84{bottom:318.870000px;}
.y179{bottom:329.745000px;}
.y1b4{bottom:330.495000px;}
.y19e{bottom:330.855000px;}
.y100{bottom:330.870000px;}
.yb2{bottom:331.230000px;}
.y136{bottom:333.495000px;}
.y83{bottom:334.605000px;}
.y1b3{bottom:344.355000px;}
.y19d{bottom:344.730000px;}
.yb1{bottom:346.620000px;}
.y135{bottom:348.870000px;}
.y82{bottom:349.995000px;}
.y40{bottom:351.480000px;}
.yfe{bottom:351.495000px;}
.y38{bottom:352.245000px;}
.y1b2{bottom:358.230000px;}
.y19c{bottom:358.605000px;}
.yb0{bottom:361.980000px;}
.y37{bottom:365.355000px;}
.y81{bottom:365.745000px;}
.y1b1{bottom:372.105000px;}
.yfc{bottom:372.120000px;}
.y19b{bottom:372.495000px;}
.y134{bottom:375.870000px;}
.yaf{bottom:377.745000px;}
.y36{bottom:380.745000px;}
.y80{bottom:381.120000px;}
.y19a{bottom:385.995000px;}
.y133{bottom:387.495000px;}
.yfd{bottom:391.245000px;}
.yae{bottom:393.120000px;}
.y35{bottom:394.980000px;}
.y7f{bottom:396.495000px;}
.y1b0{bottom:399.495000px;}
.y199{bottom:399.870000px;}
.y132{bottom:404.745000px;}
.yad{bottom:408.870000px;}
.yfa{bottom:410.370000px;}
.y34{bottom:411.870000px;}
.y7e{bottom:412.245000px;}
.y131{bottom:413.370000px;}
.y198{bottom:413.745000px;}
.y130{bottom:416.745000px;}
.yac{bottom:424.245000px;}
.y33{bottom:427.245000px;}
.y7d{bottom:427.620000px;}
.yf8{bottom:429.495000px;}
.y12f{bottom:439.275000px;}
.ycc{bottom:439.650000px;}
.yab{bottom:440.025000px;}
.y32{bottom:441.150000px;}
.y197{bottom:441.525000px;}
.y7c{bottom:443.400000px;}
.yf5{bottom:448.650000px;}
.y31{bottom:455.025000px;}
.ycb{bottom:455.400000px;}
.yaa{bottom:456.900000px;}
.y7b{bottom:458.775000px;}
.y12e{bottom:461.775000px;}
.y1af{bottom:468.525000px;}
.y30{bottom:468.900000px;}
.yca{bottom:470.775000px;}
.ya9{bottom:472.650000px;}
.y7a{bottom:474.150000px;}
.y1ae{bottom:482.400000px;}
.y2f{bottom:482.775000px;}
.y12d{bottom:484.275000px;}
.yc9{bottom:486.525000px;}
.ya8{bottom:488.025000px;}
.y169{bottom:489.525000px;}
.y79{bottom:489.900000px;}
.yf3{bottom:492.900000px;}
.y2e{bottom:496.275000px;}
.y196{bottom:496.650000px;}
.y178{bottom:501.900000px;}
.yc8{bottom:502.275000px;}
.ya7{bottom:503.775000px;}
.y168{bottom:504.150000px;}
.y78{bottom:505.275000px;}
.y12c{bottom:507.150000px;}
.y2d{bottom:510.150000px;}
.yf1{bottom:510.525000px;}
.y177{bottom:517.275000px;}
.ya6{bottom:519.150000px;}
.y77{bottom:521.025000px;}
.y167{bottom:522.525000px;}
.y2c{bottom:524.025000px;}
.yf0{bottom:529.275000px;}
.y12b{bottom:529.650000px;}
.y176{bottom:533.025000px;}
.ya5{bottom:534.525000px;}
.y76{bottom:536.400000px;}
.y1ad{bottom:537.525000px;}
.y2b{bottom:537.900000px;}
.yef{bottom:548.025000px;}
.y175{bottom:548.400000px;}
.ya4{bottom:550.275000px;}
.y1ac{bottom:551.400000px;}
.y2a{bottom:551.775000px;}
.y12a{bottom:552.150000px;}
.y174{bottom:564.195000px;}
.y29{bottom:565.320000px;}
.ya3{bottom:565.695000px;}
.yed{bottom:566.820000px;}
.y75{bottom:567.570000px;}
.y129{bottom:574.695000px;}
.y28{bottom:579.195000px;}
.y173{bottom:579.570000px;}
.ya2{bottom:581.445000px;}
.y74{bottom:582.945000px;}
.yeb{bottom:585.195000px;}
.y27{bottom:593.070000px;}
.y172{bottom:594.945000px;}
.ya1{bottom:596.820000px;}
.y128{bottom:597.195000px;}
.y73{bottom:598.320000px;}
.yea{bottom:603.195000px;}
.y1ab{bottom:606.570000px;}
.y26{bottom:606.945000px;}
.y171{bottom:610.695000px;}
.ya0{bottom:612.195000px;}
.y72{bottom:614.070000px;}
.y127{bottom:620.070000px;}
.y1aa{bottom:620.445000px;}
.y25{bottom:620.820000px;}
.ye6{bottom:621.570000px;}
.y170{bottom:626.070000px;}
.y9f{bottom:627.945000px;}
.y15d{bottom:628.320000px;}
.y71{bottom:629.445000px;}
.y24{bottom:634.320000px;}
.y195{bottom:634.695000px;}
.ye9{bottom:638.445000px;}
.y16f{bottom:641.445000px;}
.y126{bottom:642.570000px;}
.y9e{bottom:643.320000px;}
.y15c{bottom:644.070000px;}
.y70{bottom:645.195000px;}
.y23{bottom:648.195000px;}
.ye8{bottom:655.695000px;}
.y16e{bottom:657.195000px;}
.y9d{bottom:658.695000px;}
.y15b{bottom:659.070000px;}
.y6f{bottom:660.570000px;}
.y22{bottom:662.070000px;}
.y124{bottom:665.070000px;}
.y15a{bottom:671.070000px;}
.ye4{bottom:672.570000px;}
.y9c{bottom:674.445000px;}
.y1a9{bottom:675.570000px;}
.y21{bottom:675.945000px;}
.y158{bottom:681.570000px;}
.y120{bottom:687.570000px;}
.y16d{bottom:688.350000px;}
.y20{bottom:689.475000px;}
.y9b{bottom:689.850000px;}
.y92{bottom:691.350000px;}
.y6e{bottom:691.725000px;}
.y1f{bottom:703.350000px;}
.y16c{bottom:703.725000px;}
.y91{bottom:705.600000px;}
.y6d{bottom:707.100000px;}
.yde{bottom:708.225000px;}
.y159{bottom:710.100000px;}
.y194{bottom:717.225000px;}
.y1e{bottom:717.600000px;}
.y16b{bottom:719.100000px;}
.y9a{bottom:720.975000px;}
.y90{bottom:722.475000px;}
.y6c{bottom:722.850000px;}
.y157{bottom:728.850000px;}
.y121{bottom:731.100000px;}
.y1d{bottom:734.475000px;}
.y16a{bottom:734.850000px;}
.y99{bottom:736.350000px;}
.y8f{bottom:737.100000px;}
.y6b{bottom:738.225000px;}
.y1c1{bottom:744.600000px;}
.y193{bottom:744.975000px;}
.y156{bottom:747.975000px;}
.y1c{bottom:749.850000px;}
.ye0{bottom:750.975000px;}
.y98{bottom:752.100000px;}
.y6a{bottom:753.600000px;}
.y8e{bottom:755.475000px;}
.y1c0{bottom:758.475000px;}
.y192{bottom:758.850000px;}
.y1b{bottom:763.725000px;}
.y11f{bottom:766.350000px;}
.y152{bottom:767.100000px;}
.y97{bottom:767.475000px;}
.ydd{bottom:767.850000px;}
.y69{bottom:769.350000px;}
.y1bf{bottom:772.350000px;}
.y191{bottom:772.725000px;}
.y1a{bottom:777.600000px;}
.y11e{bottom:779.475000px;}
.ydc{bottom:780.225000px;}
.y96{bottom:783.225000px;}
.y68{bottom:784.725000px;}
.y155{bottom:785.850000px;}
.y190{bottom:786.225000px;}
.y19{bottom:791.475000px;}
.ydb{bottom:791.850000px;}
.y11d{bottom:795.225000px;}
.yc7{bottom:798.600000px;}
.y18f{bottom:800.100000px;}
.y67{bottom:800.475000px;}
.yda{bottom:804.600000px;}
.y154{bottom:804.975000px;}
.y18{bottom:805.350000px;}
.y11c{bottom:810.600000px;}
.y1be{bottom:813.600000px;}
.yc6{bottom:813.975000px;}
.y66{bottom:815.850000px;}
.yd9{bottom:820.395000px;}
.y17{bottom:823.380000px;}
.y150{bottom:823.755000px;}
.y11b{bottom:826.380000px;}
.y1bd{bottom:827.505000px;}
.y18e{bottom:827.880000px;}
.yc5{bottom:829.755000px;}
.y65{bottom:831.255000px;}
.yd8{bottom:835.755000px;}
.y16{bottom:837.255000px;}
.y1bc{bottom:841.380000px;}
.y11a{bottom:841.755000px;}
.yc4{bottom:845.130000px;}
.y15{bottom:846.630000px;}
.y64{bottom:847.005000px;}
.yd7{bottom:851.130000px;}
.y14f{bottom:852.255000px;}
.y18d{bottom:855.255000px;}
.y119{bottom:857.130000px;}
.yc3{bottom:860.880000px;}
.y63{bottom:862.395000px;}
.y14{bottom:863.505000px;}
.yd6{bottom:866.880000px;}
.y18c{bottom:869.145000px;}
.y118{bottom:872.880000px;}
.yc2{bottom:876.255000px;}
.y62{bottom:878.130000px;}
.y14e{bottom:880.755000px;}
.yd5{bottom:882.255000px;}
.y18b{bottom:883.005000px;}
.y13{bottom:884.880000px;}
.y117{bottom:888.255000px;}
.yc1{bottom:891.630000px;}
.y61{bottom:893.505000px;}
.y18a{bottom:896.880000px;}
.yd4{bottom:898.005000px;}
.y14d{bottom:899.505000px;}
.y12{bottom:902.505000px;}
.y116{bottom:904.005000px;}
.yc0{bottom:907.380000px;}
.y60{bottom:908.880000px;}
.y189{bottom:910.755000px;}
.yd3{bottom:913.380000px;}
.y14c{bottom:918.630000px;}
.y115{bottom:919.380000px;}
.ybf{bottom:922.755000px;}
.y188{bottom:924.255000px;}
.y5f{bottom:924.630000px;}
.y11{bottom:928.380000px;}
.yd2{bottom:928.755000px;}
.y114{bottom:934.755000px;}
.y147{bottom:937.395000px;}
.y187{bottom:938.130000px;}
.ybe{bottom:938.505000px;}
.y5e{bottom:940.005000px;}
.yd1{bottom:944.505000px;}
.y113{bottom:950.550000px;}
.y10{bottom:952.050000px;}
.y5d{bottom:955.800000px;}
.yd0{bottom:959.925000px;}
.y112{bottom:965.925000px;}
.yf{bottom:967.800000px;}
.y5c{bottom:971.175000px;}
.ycf{bottom:974.925000px;}
.y186{bottom:979.800000px;}
.yd{bottom:979.875000px;}
.y111{bottom:981.675000px;}
.yc{bottom:983.550000px;}
.y145{bottom:985.050000px;}
.y5b{bottom:986.550000px;}
.yce{bottom:988.050000px;}
.y185{bottom:993.300000px;}
.y110{bottom:997.050000px;}
.yb{bottom:997.425000px;}
.ya{bottom:1001.550000px;}
.y5a{bottom:1002.300000px;}
.ycd{bottom:1006.050000px;}
.y184{bottom:1007.175000px;}
.y10f{bottom:1012.425000px;}
.y144{bottom:1015.800000px;}
.y9{bottom:1016.925000px;}
.y59{bottom:1017.675000px;}
.y183{bottom:1021.050000px;}
.y10e{bottom:1028.175000px;}
.y143{bottom:1028.550000px;}
.y8{bottom:1032.675000px;}
.y58{bottom:1033.425000px;}
.y182{bottom:1034.925000px;}
.y142{bottom:1040.550000px;}
.y10d{bottom:1042.050000px;}
.y95{bottom:1051.050000px;}
.y6{bottom:1057.875000px;}
.y1{bottom:1063.050000px;}
.y56{bottom:1070.175000px;}
.h1b{height:4.511719px;}
.h3a{height:11.244141px;}
.h22{height:13.875000px;}
.hc{height:15.000000px;}
.h27{height:16.110000px;}
.h29{height:16.125000px;}
.h28{height:16.485000px;}
.h25{height:16.537500px;}
.h3c{height:16.866211px;}
.h2f{height:16.875000px;}
.h2a{height:17.250000px;}
.h24{height:17.625000px;}
.h2d{height:18.000000px;}
.h2c{height:18.037500px;}
.h33{height:18.375000px;}
.h32{height:18.412500px;}
.h3f{height:18.787500px;}
.h39{height:19.125000px;}
.h37{height:19.500000px;}
.h36{height:19.537500px;}
.h1c{height:19.677246px;}
.h34{height:19.875000px;}
.h30{height:21.375000px;}
.h40{height:21.735000px;}
.h42{height:21.750000px;}
.h44{height:21.787500px;}
.h43{height:22.125000px;}
.h20{height:22.488281px;}
.h6{height:22.875000px;}
.h3e{height:23.250000px;}
.h46{height:25.299316px;}
.h3{height:27.375000px;}
.h4a{height:27.750000px;}
.h49{height:27.772500px;}
.h4d{height:27.787500px;}
.h11{height:28.110352px;}
.h47{height:28.393066px;}
.h5{height:29.162109px;}
.h18{height:30.921387px;}
.ha{height:31.582031px;}
.h4e{height:33.732422px;}
.h16{height:33.837891px;}
.h23{height:34.945312px;}
.h2b{height:35.625000px;}
.h1e{height:36.093750px;}
.h7{height:36.543457px;}
.h2e{height:36.750000px;}
.h3b{height:37.488281px;}
.h4{height:39.354492px;}
.h35{height:40.500000px;}
.hb{height:40.605469px;}
.he{height:40.718262px;}
.hd{height:41.497559px;}
.h17{height:42.165527px;}
.h1d{height:42.306079px;}
.h31{height:43.500000px;}
.h12{height:44.976562px;}
.h15{height:45.117114px;}
.h14{height:45.117188px;}
.h41{height:46.110352px;}
.h45{height:46.290352px;}
.h4c{height:46.537500px;}
.h48{height:46.897500px;}
.h2{height:48.761719px;}
.h19{height:49.628906px;}
.h1{height:49.992188px;}
.h9{height:50.598633px;}
.h8{height:53.409668px;}
.h4b{height:55.912500px;}
.h1f{height:56.220703px;}
.h21{height:56.625000px;}
.h38{height:59.625000px;}
.h13{height:61.842773px;}
.h3d{height:62.662500px;}
.h26{height:67.537500px;}
.hf{height:67.675781px;}
.h10{height:74.976562px;}
.h1a{height:90.000000px;}
.h0{height:1263.000000px;}
.w5{width:3.000000px;}
.w1d{width:54.787500px;}
.wc{width:55.162500px;}
.w21{width:55.537500px;}
.we{width:57.000000px;}
.w1e{width:61.912500px;}
.w22{width:62.287500px;}
.w1c{width:63.375000px;}
.w20{width:64.125000px;}
.wd{width:65.287500px;}
.wf{width:70.162500px;}
.w13{width:73.162500px;}
.w18{width:84.412500px;}
.w16{width:90.037500px;}
.w1a{width:98.662500px;}
.w17{width:116.287500px;}
.w19{width:116.325000px;}
.wa{width:121.200000px;}
.wb{width:127.912500px;}
.w9{width:129.450000px;}
.w11{width:131.287500px;}
.w15{width:201.495000px;}
.w14{width:207.075000px;}
.w7{width:234.450000px;}
.w8{width:249.870000px;}
.w6{width:294.375000px;}
.w1b{width:333.900000px;}
.w1f{width:334.275000px;}
.w12{width:409.320000px;}
.w4{width:612.750000px;}
.w10{width:615.255000px;}
.w3{width:643.800000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:2.325000px;}
.x1f{left:4.500000px;}
.xd{left:7.575000px;}
.x2f{left:10.905000px;}
.x2c{left:13.155000px;}
.x17{left:15.000000px;}
.x2e{left:16.530000px;}
.x19{left:18.375000px;}
.x3{left:21.037500px;}
.x21{left:22.125000px;}
.x1a{left:23.295000px;}
.x20{left:24.420000px;}
.x1c{left:27.375000px;}
.x1e{left:29.655000px;}
.x36{left:31.125000px;}
.x28{left:32.625000px;}
.x23{left:42.780000px;}
.x22{left:46.155000px;}
.x2a{left:56.280000px;}
.x29{left:57.780000px;}
.x16{left:60.780000px;}
.x14{left:74.670000px;}
.x32{left:103.530000px;}
.x2{left:124.537500px;}
.x1{left:138.449987px;}
.x11{left:139.574987px;}
.xc{left:140.625000px;}
.x8{left:155.324987px;}
.xe{left:160.199987px;}
.x10{left:201.824987px;}
.x30{left:221.369987px;}
.x6{left:228.000000px;}
.x7{left:231.494987px;}
.x31{left:238.995000px;}
.x24{left:259.619987px;}
.x26{left:271.620000px;}
.x38{left:289.619987px;}
.x12{left:339.899987px;}
.x2b{left:362.400000px;}
.x13{left:374.775000px;}
.x1b{left:430.695000px;}
.x9{left:438.194987px;}
.x25{left:447.194987px;}
.xa{left:457.319987px;}
.xf{left:478.694987px;}
.x18{left:496.725000px;}
.xb{left:537.974987px;}
.x1d{left:554.475000px;}
.x2d{left:564.600000px;}
.x33{left:573.645000px;}
.x15{left:625.395000px;}
.x4{left:633.307500px;}
.x34{left:637.770000px;}
.x27{left:681.675000px;}
.x35{left:692.925000px;}
.x37{left:755.594987px;}
@media print{
.v2{vertical-align:-15.946667pt;}
.v5{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.333333pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls1f{letter-spacing:-1.349333pt;}
.ls20{letter-spacing:-1.317333pt;}
.ls39{letter-spacing:-1.194667pt;}
.ls2c{letter-spacing:-1.045333pt;}
.ls1e{letter-spacing:-0.981333pt;}
.ls13{letter-spacing:-0.906667pt;}
.ls35{letter-spacing:-0.682667pt;}
.ls11{letter-spacing:-0.608000pt;}
.ls1d{letter-spacing:-0.521600pt;}
.ls34{letter-spacing:-0.458667pt;}
.ls12{letter-spacing:-0.453333pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.309333pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.138667pt;}
.ls17{letter-spacing:-0.066667pt;}
.ls33{letter-spacing:-0.032000pt;}
.ls26{letter-spacing:-0.021333pt;}
.ls28{letter-spacing:-0.016000pt;}
.ls1a{letter-spacing:-0.013333pt;}
.ls14{letter-spacing:-0.010667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.005333pt;}
.ls6{letter-spacing:0.010667pt;}
.ls1c{letter-spacing:0.013333pt;}
.ls22{letter-spacing:0.016000pt;}
.ls25{letter-spacing:0.021333pt;}
.ls2e{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.066667pt;}
.ls2b{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.203200pt;}
.lsd{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.261333pt;}
.ls2{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.277333pt;}
.ls9{letter-spacing:0.282667pt;}
.ls1{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.400000pt;}
.ls18{letter-spacing:0.410667pt;}
.ls4{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.453333pt;}
.ls38{letter-spacing:0.501333pt;}
.ls21{letter-spacing:0.576000pt;}
.ls36{letter-spacing:0.586667pt;}
.ls2f{letter-spacing:0.650667pt;}
.ls1b{letter-spacing:0.714667pt;}
.ls30{letter-spacing:1.312000pt;}
.ls27{letter-spacing:1.322667pt;}
.ls31{letter-spacing:1.418667pt;}
.ls32{letter-spacing:1.472000pt;}
.ls19{letter-spacing:2.213333pt;}
.lsb{letter-spacing:2.357333pt;}
.ls37{letter-spacing:8.138667pt;}
.ls8{letter-spacing:54.944000pt;}
.ws2b{word-spacing:-42.666667pt;}
.ws20{word-spacing:-24.917333pt;}
.ws13{word-spacing:-17.024000pt;}
.ws1b{word-spacing:-16.309333pt;}
.ws1e{word-spacing:-14.826667pt;}
.ws1d{word-spacing:-14.506667pt;}
.ws2a{word-spacing:-13.365333pt;}
.ws1c{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.354667pt;}
.ws1a{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws24{word-spacing:-13.328000pt;}
.ws1f{word-spacing:-13.322667pt;}
.ws25{word-spacing:-13.312000pt;}
.ws11{word-spacing:-12.272000pt;}
.wse{word-spacing:-12.138667pt;}
.wsc{word-spacing:-12.117333pt;}
.wsb{word-spacing:-12.101600pt;}
.wsd{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.965067pt;}
.wsa{word-spacing:-11.898400pt;}
.ws8{word-spacing:-11.861333pt;}
.ws10{word-spacing:-11.831733pt;}
.ws9{word-spacing:-11.722667pt;}
.ws22{word-spacing:-11.573333pt;}
.ws21{word-spacing:-11.546667pt;}
.ws2{word-spacing:-11.520000pt;}
.ws26{word-spacing:-11.402667pt;}
.ws14{word-spacing:-11.133333pt;}
.ws3{word-spacing:-11.120000pt;}
.ws12{word-spacing:-11.106667pt;}
.ws15{word-spacing:-10.635467pt;}
.ws0{word-spacing:-10.378667pt;}
.ws4{word-spacing:-10.213333pt;}
.ws16{word-spacing:-10.175733pt;}
.ws18{word-spacing:-9.802667pt;}
.ws17{word-spacing:-9.770667pt;}
.ws1{word-spacing:-9.029333pt;}
.ws23{word-spacing:-8.896000pt;}
.ws27{word-spacing:-7.840000pt;}
.ws7{word-spacing:-7.413333pt;}
.ws28{word-spacing:-6.506667pt;}
.ws29{word-spacing:-5.989333pt;}
.ws19{word-spacing:0.000000pt;}
._19{margin-left:-10.677333pt;}
._1f{margin-left:-9.285333pt;}
._1e{margin-left:-4.890667pt;}
._6{margin-left:-3.680000pt;}
._2{margin-left:-1.946667pt;}
._0{margin-left:-1.045333pt;}
._1{width:1.205333pt;}
._3{width:2.890667pt;}
._7{width:3.824000pt;}
._4{width:4.736000pt;}
._5{width:6.469333pt;}
._8{width:7.904000pt;}
._9{width:8.970667pt;}
._a{width:10.016000pt;}
._c{width:11.056000pt;}
._14{width:12.176000pt;}
._25{width:13.216000pt;}
._d{width:14.592000pt;}
._e{width:15.936000pt;}
._1a{width:17.184000pt;}
._b{width:18.554667pt;}
._f{width:19.632000pt;}
._13{width:20.650667pt;}
._12{width:22.101333pt;}
._1d{width:23.018667pt;}
._17{width:24.048000pt;}
._23{width:25.200000pt;}
._24{width:26.400000pt;}
._1b{width:28.032000pt;}
._18{width:29.184000pt;}
._1c{width:30.154667pt;}
._22{width:31.098667pt;}
._26{width:32.469333pt;}
._10{width:33.440000pt;}
._11{width:35.104000pt;}
._15{width:36.416000pt;}
._27{width:37.525333pt;}
._16{width:41.093333pt;}
._20{width:64.069333pt;}
._21{width:65.706667pt;}
.fs7{font-size:5.333333pt;}
.fs14{font-size:10.666667pt;}
.fs15{font-size:16.000000pt;}
.fs11{font-size:18.666667pt;}
.fs13{font-size:21.333333pt;}
.fs16{font-size:24.000000pt;}
.fsc{font-size:26.666667pt;}
.fs10{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs12{font-size:40.133333pt;}
.fsa{font-size:42.666667pt;}
.fsf{font-size:42.800000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs5{font-size:50.666667pt;}
.fse{font-size:53.333333pt;}
.fsd{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.y5{bottom:-6.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.600000pt;}
.y14a{bottom:2.320000pt;}
.ye1{bottom:2.333333pt;}
.ye{bottom:3.266667pt;}
.ye5{bottom:3.666667pt;}
.yec{bottom:4.000000pt;}
.ye3{bottom:4.333333pt;}
.yfb{bottom:4.666667pt;}
.yf9{bottom:4.693333pt;}
.y104{bottom:5.000000pt;}
.yff{bottom:5.333333pt;}
.yf4{bottom:5.666667pt;}
.y55{bottom:5.733333pt;}
.yf7{bottom:6.000000pt;}
.y125{bottom:6.333333pt;}
.y123{bottom:6.666667pt;}
.y146{bottom:8.333333pt;}
.y151{bottom:8.666667pt;}
.y14b{bottom:8.693333pt;}
.yee{bottom:12.000000pt;}
.yf2{bottom:12.666667pt;}
.y102{bottom:14.333333pt;}
.ye2{bottom:14.666667pt;}
.y149{bottom:14.693333pt;}
.yf6{bottom:15.333333pt;}
.y4{bottom:15.666667pt;}
.y148{bottom:17.026667pt;}
.y54{bottom:17.400000pt;}
.y153{bottom:21.000000pt;}
.ydf{bottom:21.333333pt;}
.y107{bottom:22.666667pt;}
.y122{bottom:24.693333pt;}
.ye7{bottom:26.000000pt;}
.y53{bottom:28.733333pt;}
.y52{bottom:40.400000pt;}
.y57{bottom:50.366667pt;}
.y51{bottom:51.773333pt;}
.y50{bottom:63.440000pt;}
.y4f{bottom:73.773333pt;}
.y4e{bottom:78.440000pt;}
.y2{bottom:83.366667pt;}
.y3{bottom:108.033333pt;}
.ybd{bottom:142.373333pt;}
.y10c{bottom:144.026667pt;}
.y141{bottom:144.360000pt;}
.y166{bottom:145.040000pt;}
.y8d{bottom:145.373333pt;}
.y1bb{bottom:146.693333pt;}
.y1a8{bottom:147.026667pt;}
.y3f{bottom:148.040000pt;}
.y10b{bottom:152.373333pt;}
.y4c{bottom:152.693333pt;}
.y10a{bottom:155.400000pt;}
.ybc{bottom:156.400000pt;}
.y181{bottom:157.733333pt;}
.y140{bottom:158.400000pt;}
.y165{bottom:158.733333pt;}
.y1a7{bottom:159.066667pt;}
.y3e{bottom:159.400000pt;}
.y4b{bottom:166.400000pt;}
.ybb{bottom:170.066667pt;}
.y3d{bottom:171.066667pt;}
.y1a6{bottom:171.400000pt;}
.y109{bottom:171.733333pt;}
.y13f{bottom:172.066667pt;}
.y164{bottom:172.400000pt;}
.y8c{bottom:173.066667pt;}
.y4a{bottom:180.733333pt;}
.y180{bottom:182.066667pt;}
.y3c{bottom:182.400000pt;}
.y1ba{bottom:183.400000pt;}
.yba{bottom:183.733333pt;}
.y13e{bottom:186.066667pt;}
.y163{bottom:186.400000pt;}
.y8b{bottom:187.066667pt;}
.y108{bottom:187.733333pt;}
.y3b{bottom:194.066667pt;}
.y17f{bottom:194.400000pt;}
.y1b9{bottom:195.733333pt;}
.y1a5{bottom:196.066667pt;}
.y49{bottom:197.066667pt;}
.yb9{bottom:197.733333pt;}
.y13d{bottom:199.733333pt;}
.y162{bottom:200.066667pt;}
.y8a{bottom:200.733333pt;}
.y94{bottom:201.066667pt;}
.y106{bottom:204.066667pt;}
.y3a{bottom:205.400000pt;}
.y17e{bottom:206.733333pt;}
.y1b8{bottom:208.066667pt;}
.y1a4{bottom:208.400000pt;}
.y48{bottom:210.733333pt;}
.yb8{bottom:211.400000pt;}
.y161{bottom:213.066667pt;}
.y13c{bottom:213.400000pt;}
.y89{bottom:214.400000pt;}
.y39{bottom:214.733333pt;}
.y93{bottom:216.066667pt;}
.y17d{bottom:219.400000pt;}
.y1a3{bottom:220.400000pt;}
.y47{bottom:222.066667pt;}
.y4d{bottom:222.666667pt;}
.yb7{bottom:225.400000pt;}
.y13b{bottom:227.400000pt;}
.y88{bottom:228.400000pt;}
.y160{bottom:230.733333pt;}
.y1b7{bottom:232.400000pt;}
.y1a2{bottom:232.733333pt;}
.y46{bottom:233.733333pt;}
.y17c{bottom:235.066667pt;}
.yb6{bottom:239.066667pt;}
.y105{bottom:239.733333pt;}
.y13a{bottom:241.066667pt;}
.y87{bottom:242.066667pt;}
.y15f{bottom:242.733333pt;}
.y45{bottom:244.733333pt;}
.y1a1{bottom:245.066667pt;}
.y17b{bottom:251.400000pt;}
.y15e{bottom:252.066667pt;}
.yb5{bottom:252.733333pt;}
.y44{bottom:253.733333pt;}
.y139{bottom:255.066667pt;}
.y86{bottom:256.066667pt;}
.y1b6{bottom:257.066667pt;}
.y1a0{bottom:257.400000pt;}
.y103{bottom:257.733333pt;}
.y43{bottom:265.066667pt;}
.yb4{bottom:266.733333pt;}
.y138{bottom:268.733333pt;}
.y1b5{bottom:269.440000pt;}
.y85{bottom:269.773333pt;}
.y101{bottom:275.773333pt;}
.y42{bottom:276.093333pt;}
.y17a{bottom:279.093333pt;}
.yb3{bottom:280.440000pt;}
.y19f{bottom:281.773333pt;}
.y137{bottom:282.426667pt;}
.y41{bottom:282.760000pt;}
.y84{bottom:283.440000pt;}
.y179{bottom:293.106667pt;}
.y1b4{bottom:293.773333pt;}
.y19e{bottom:294.093333pt;}
.y100{bottom:294.106667pt;}
.yb2{bottom:294.426667pt;}
.y136{bottom:296.440000pt;}
.y83{bottom:297.426667pt;}
.y1b3{bottom:306.093333pt;}
.y19d{bottom:306.426667pt;}
.yb1{bottom:308.106667pt;}
.y135{bottom:310.106667pt;}
.y82{bottom:311.106667pt;}
.y40{bottom:312.426667pt;}
.yfe{bottom:312.440000pt;}
.y38{bottom:313.106667pt;}
.y1b2{bottom:318.426667pt;}
.y19c{bottom:318.760000pt;}
.yb0{bottom:321.760000pt;}
.y37{bottom:324.760000pt;}
.y81{bottom:325.106667pt;}
.y1b1{bottom:330.760000pt;}
.yfc{bottom:330.773333pt;}
.y19b{bottom:331.106667pt;}
.y134{bottom:334.106667pt;}
.yaf{bottom:335.773333pt;}
.y36{bottom:338.440000pt;}
.y80{bottom:338.773333pt;}
.y19a{bottom:343.106667pt;}
.y133{bottom:344.440000pt;}
.yfd{bottom:347.773333pt;}
.yae{bottom:349.440000pt;}
.y35{bottom:351.093333pt;}
.y7f{bottom:352.440000pt;}
.y1b0{bottom:355.106667pt;}
.y199{bottom:355.440000pt;}
.y132{bottom:359.773333pt;}
.yad{bottom:363.440000pt;}
.yfa{bottom:364.773333pt;}
.y34{bottom:366.106667pt;}
.y7e{bottom:366.440000pt;}
.y131{bottom:367.440000pt;}
.y198{bottom:367.773333pt;}
.y130{bottom:370.440000pt;}
.yac{bottom:377.106667pt;}
.y33{bottom:379.773333pt;}
.y7d{bottom:380.106667pt;}
.yf8{bottom:381.773333pt;}
.y12f{bottom:390.466667pt;}
.ycc{bottom:390.800000pt;}
.yab{bottom:391.133333pt;}
.y32{bottom:392.133333pt;}
.y197{bottom:392.466667pt;}
.y7c{bottom:394.133333pt;}
.yf5{bottom:398.800000pt;}
.y31{bottom:404.466667pt;}
.ycb{bottom:404.800000pt;}
.yaa{bottom:406.133333pt;}
.y7b{bottom:407.800000pt;}
.y12e{bottom:410.466667pt;}
.y1af{bottom:416.466667pt;}
.y30{bottom:416.800000pt;}
.yca{bottom:418.466667pt;}
.ya9{bottom:420.133333pt;}
.y7a{bottom:421.466667pt;}
.y1ae{bottom:428.800000pt;}
.y2f{bottom:429.133333pt;}
.y12d{bottom:430.466667pt;}
.yc9{bottom:432.466667pt;}
.ya8{bottom:433.800000pt;}
.y169{bottom:435.133333pt;}
.y79{bottom:435.466667pt;}
.yf3{bottom:438.133333pt;}
.y2e{bottom:441.133333pt;}
.y196{bottom:441.466667pt;}
.y178{bottom:446.133333pt;}
.yc8{bottom:446.466667pt;}
.ya7{bottom:447.800000pt;}
.y168{bottom:448.133333pt;}
.y78{bottom:449.133333pt;}
.y12c{bottom:450.800000pt;}
.y2d{bottom:453.466667pt;}
.yf1{bottom:453.800000pt;}
.y177{bottom:459.800000pt;}
.ya6{bottom:461.466667pt;}
.y77{bottom:463.133333pt;}
.y167{bottom:464.466667pt;}
.y2c{bottom:465.800000pt;}
.yf0{bottom:470.466667pt;}
.y12b{bottom:470.800000pt;}
.y176{bottom:473.800000pt;}
.ya5{bottom:475.133333pt;}
.y76{bottom:476.800000pt;}
.y1ad{bottom:477.800000pt;}
.y2b{bottom:478.133333pt;}
.yef{bottom:487.133333pt;}
.y175{bottom:487.466667pt;}
.ya4{bottom:489.133333pt;}
.y1ac{bottom:490.133333pt;}
.y2a{bottom:490.466667pt;}
.y12a{bottom:490.800000pt;}
.y174{bottom:501.506667pt;}
.y29{bottom:502.506667pt;}
.ya3{bottom:502.840000pt;}
.yed{bottom:503.840000pt;}
.y75{bottom:504.506667pt;}
.y129{bottom:510.840000pt;}
.y28{bottom:514.840000pt;}
.y173{bottom:515.173333pt;}
.ya2{bottom:516.840000pt;}
.y74{bottom:518.173333pt;}
.yeb{bottom:520.173333pt;}
.y27{bottom:527.173333pt;}
.y172{bottom:528.840000pt;}
.ya1{bottom:530.506667pt;}
.y128{bottom:530.840000pt;}
.y73{bottom:531.840000pt;}
.yea{bottom:536.173333pt;}
.y1ab{bottom:539.173333pt;}
.y26{bottom:539.506667pt;}
.y171{bottom:542.840000pt;}
.ya0{bottom:544.173333pt;}
.y72{bottom:545.840000pt;}
.y127{bottom:551.173333pt;}
.y1aa{bottom:551.506667pt;}
.y25{bottom:551.840000pt;}
.ye6{bottom:552.506667pt;}
.y170{bottom:556.506667pt;}
.y9f{bottom:558.173333pt;}
.y15d{bottom:558.506667pt;}
.y71{bottom:559.506667pt;}
.y24{bottom:563.840000pt;}
.y195{bottom:564.173333pt;}
.ye9{bottom:567.506667pt;}
.y16f{bottom:570.173333pt;}
.y126{bottom:571.173333pt;}
.y9e{bottom:571.840000pt;}
.y15c{bottom:572.506667pt;}
.y70{bottom:573.506667pt;}
.y23{bottom:576.173333pt;}
.ye8{bottom:582.840000pt;}
.y16e{bottom:584.173333pt;}
.y9d{bottom:585.506667pt;}
.y15b{bottom:585.840000pt;}
.y6f{bottom:587.173333pt;}
.y22{bottom:588.506667pt;}
.y124{bottom:591.173333pt;}
.y15a{bottom:596.506667pt;}
.ye4{bottom:597.840000pt;}
.y9c{bottom:599.506667pt;}
.y1a9{bottom:600.506667pt;}
.y21{bottom:600.840000pt;}
.y158{bottom:605.840000pt;}
.y120{bottom:611.173333pt;}
.y16d{bottom:611.866667pt;}
.y20{bottom:612.866667pt;}
.y9b{bottom:613.200000pt;}
.y92{bottom:614.533333pt;}
.y6e{bottom:614.866667pt;}
.y1f{bottom:625.200000pt;}
.y16c{bottom:625.533333pt;}
.y91{bottom:627.200000pt;}
.y6d{bottom:628.533333pt;}
.yde{bottom:629.533333pt;}
.y159{bottom:631.200000pt;}
.y194{bottom:637.533333pt;}
.y1e{bottom:637.866667pt;}
.y16b{bottom:639.200000pt;}
.y9a{bottom:640.866667pt;}
.y90{bottom:642.200000pt;}
.y6c{bottom:642.533333pt;}
.y157{bottom:647.866667pt;}
.y121{bottom:649.866667pt;}
.y1d{bottom:652.866667pt;}
.y16a{bottom:653.200000pt;}
.y99{bottom:654.533333pt;}
.y8f{bottom:655.200000pt;}
.y6b{bottom:656.200000pt;}
.y1c1{bottom:661.866667pt;}
.y193{bottom:662.200000pt;}
.y156{bottom:664.866667pt;}
.y1c{bottom:666.533333pt;}
.ye0{bottom:667.533333pt;}
.y98{bottom:668.533333pt;}
.y6a{bottom:669.866667pt;}
.y8e{bottom:671.533333pt;}
.y1c0{bottom:674.200000pt;}
.y192{bottom:674.533333pt;}
.y1b{bottom:678.866667pt;}
.y11f{bottom:681.200000pt;}
.y152{bottom:681.866667pt;}
.y97{bottom:682.200000pt;}
.ydd{bottom:682.533333pt;}
.y69{bottom:683.866667pt;}
.y1bf{bottom:686.533333pt;}
.y191{bottom:686.866667pt;}
.y1a{bottom:691.200000pt;}
.y11e{bottom:692.866667pt;}
.ydc{bottom:693.533333pt;}
.y96{bottom:696.200000pt;}
.y68{bottom:697.533333pt;}
.y155{bottom:698.533333pt;}
.y190{bottom:698.866667pt;}
.y19{bottom:703.533333pt;}
.ydb{bottom:703.866667pt;}
.y11d{bottom:706.866667pt;}
.yc7{bottom:709.866667pt;}
.y18f{bottom:711.200000pt;}
.y67{bottom:711.533333pt;}
.yda{bottom:715.200000pt;}
.y154{bottom:715.533333pt;}
.y18{bottom:715.866667pt;}
.y11c{bottom:720.533333pt;}
.y1be{bottom:723.200000pt;}
.yc6{bottom:723.533333pt;}
.y66{bottom:725.200000pt;}
.yd9{bottom:729.240000pt;}
.y17{bottom:731.893333pt;}
.y150{bottom:732.226667pt;}
.y11b{bottom:734.560000pt;}
.y1bd{bottom:735.560000pt;}
.y18e{bottom:735.893333pt;}
.yc5{bottom:737.560000pt;}
.y65{bottom:738.893333pt;}
.yd8{bottom:742.893333pt;}
.y16{bottom:744.226667pt;}
.y1bc{bottom:747.893333pt;}
.y11a{bottom:748.226667pt;}
.yc4{bottom:751.226667pt;}
.y15{bottom:752.560000pt;}
.y64{bottom:752.893333pt;}
.yd7{bottom:756.560000pt;}
.y14f{bottom:757.560000pt;}
.y18d{bottom:760.226667pt;}
.y119{bottom:761.893333pt;}
.yc3{bottom:765.226667pt;}
.y63{bottom:766.573333pt;}
.y14{bottom:767.560000pt;}
.yd6{bottom:770.560000pt;}
.y18c{bottom:772.573333pt;}
.y118{bottom:775.893333pt;}
.yc2{bottom:778.893333pt;}
.y62{bottom:780.560000pt;}
.y14e{bottom:782.893333pt;}
.yd5{bottom:784.226667pt;}
.y18b{bottom:784.893333pt;}
.y13{bottom:786.560000pt;}
.y117{bottom:789.560000pt;}
.yc1{bottom:792.560000pt;}
.y61{bottom:794.226667pt;}
.y18a{bottom:797.226667pt;}
.yd4{bottom:798.226667pt;}
.y14d{bottom:799.560000pt;}
.y12{bottom:802.226667pt;}
.y116{bottom:803.560000pt;}
.yc0{bottom:806.560000pt;}
.y60{bottom:807.893333pt;}
.y189{bottom:809.560000pt;}
.yd3{bottom:811.893333pt;}
.y14c{bottom:816.560000pt;}
.y115{bottom:817.226667pt;}
.ybf{bottom:820.226667pt;}
.y188{bottom:821.560000pt;}
.y5f{bottom:821.893333pt;}
.y11{bottom:825.226667pt;}
.yd2{bottom:825.560000pt;}
.y114{bottom:830.893333pt;}
.y147{bottom:833.240000pt;}
.y187{bottom:833.893333pt;}
.ybe{bottom:834.226667pt;}
.y5e{bottom:835.560000pt;}
.yd1{bottom:839.560000pt;}
.y113{bottom:844.933333pt;}
.y10{bottom:846.266667pt;}
.y5d{bottom:849.600000pt;}
.yd0{bottom:853.266667pt;}
.y112{bottom:858.600000pt;}
.yf{bottom:860.266667pt;}
.y5c{bottom:863.266667pt;}
.ycf{bottom:866.600000pt;}
.y186{bottom:870.933333pt;}
.yd{bottom:871.000000pt;}
.y111{bottom:872.600000pt;}
.yc{bottom:874.266667pt;}
.y145{bottom:875.600000pt;}
.y5b{bottom:876.933333pt;}
.yce{bottom:878.266667pt;}
.y185{bottom:882.933333pt;}
.y110{bottom:886.266667pt;}
.yb{bottom:886.600000pt;}
.ya{bottom:890.266667pt;}
.y5a{bottom:890.933333pt;}
.ycd{bottom:894.266667pt;}
.y184{bottom:895.266667pt;}
.y10f{bottom:899.933333pt;}
.y144{bottom:902.933333pt;}
.y9{bottom:903.933333pt;}
.y59{bottom:904.600000pt;}
.y183{bottom:907.600000pt;}
.y10e{bottom:913.933333pt;}
.y143{bottom:914.266667pt;}
.y8{bottom:917.933333pt;}
.y58{bottom:918.600000pt;}
.y182{bottom:919.933333pt;}
.y142{bottom:924.933333pt;}
.y10d{bottom:926.266667pt;}
.y95{bottom:934.266667pt;}
.y6{bottom:940.333333pt;}
.y1{bottom:944.933333pt;}
.y56{bottom:951.266667pt;}
.h1b{height:4.010417pt;}
.h3a{height:9.994792pt;}
.h22{height:12.333333pt;}
.hc{height:13.333333pt;}
.h27{height:14.320000pt;}
.h29{height:14.333333pt;}
.h28{height:14.653333pt;}
.h25{height:14.700000pt;}
.h3c{height:14.992188pt;}
.h2f{height:15.000000pt;}
.h2a{height:15.333333pt;}
.h24{height:15.666667pt;}
.h2d{height:16.000000pt;}
.h2c{height:16.033333pt;}
.h33{height:16.333333pt;}
.h32{height:16.366667pt;}
.h3f{height:16.700000pt;}
.h39{height:17.000000pt;}
.h37{height:17.333333pt;}
.h36{height:17.366667pt;}
.h1c{height:17.490885pt;}
.h34{height:17.666667pt;}
.h30{height:19.000000pt;}
.h40{height:19.320000pt;}
.h42{height:19.333333pt;}
.h44{height:19.366667pt;}
.h43{height:19.666667pt;}
.h20{height:19.989583pt;}
.h6{height:20.333333pt;}
.h3e{height:20.666667pt;}
.h46{height:22.488281pt;}
.h3{height:24.333333pt;}
.h4a{height:24.666667pt;}
.h49{height:24.686667pt;}
.h4d{height:24.700000pt;}
.h11{height:24.986979pt;}
.h47{height:25.238281pt;}
.h5{height:25.921875pt;}
.h18{height:27.485677pt;}
.ha{height:28.072917pt;}
.h4e{height:29.984375pt;}
.h16{height:30.078125pt;}
.h23{height:31.062500pt;}
.h2b{height:31.666667pt;}
.h1e{height:32.083333pt;}
.h7{height:32.483073pt;}
.h2e{height:32.666667pt;}
.h3b{height:33.322917pt;}
.h4{height:34.981771pt;}
.h35{height:36.000000pt;}
.hb{height:36.093750pt;}
.he{height:36.194010pt;}
.hd{height:36.886719pt;}
.h17{height:37.480469pt;}
.h1d{height:37.605404pt;}
.h31{height:38.666667pt;}
.h12{height:39.979167pt;}
.h15{height:40.104102pt;}
.h14{height:40.104167pt;}
.h41{height:40.986979pt;}
.h45{height:41.146979pt;}
.h4c{height:41.366667pt;}
.h48{height:41.686667pt;}
.h2{height:43.343750pt;}
.h19{height:44.114583pt;}
.h1{height:44.437500pt;}
.h9{height:44.976562pt;}
.h8{height:47.475260pt;}
.h4b{height:49.700000pt;}
.h1f{height:49.973958pt;}
.h21{height:50.333333pt;}
.h38{height:53.000000pt;}
.h13{height:54.971354pt;}
.h3d{height:55.700000pt;}
.h26{height:60.033333pt;}
.hf{height:60.156250pt;}
.h10{height:66.645833pt;}
.h1a{height:80.000000pt;}
.h0{height:1122.666667pt;}
.w5{width:2.666667pt;}
.w1d{width:48.700000pt;}
.wc{width:49.033333pt;}
.w21{width:49.366667pt;}
.we{width:50.666667pt;}
.w1e{width:55.033333pt;}
.w22{width:55.366667pt;}
.w1c{width:56.333333pt;}
.w20{width:57.000000pt;}
.wd{width:58.033333pt;}
.wf{width:62.366667pt;}
.w13{width:65.033333pt;}
.w18{width:75.033333pt;}
.w16{width:80.033333pt;}
.w1a{width:87.700000pt;}
.w17{width:103.366667pt;}
.w19{width:103.400000pt;}
.wa{width:107.733333pt;}
.wb{width:113.700000pt;}
.w9{width:115.066667pt;}
.w11{width:116.700000pt;}
.w15{width:179.106667pt;}
.w14{width:184.066667pt;}
.w7{width:208.400000pt;}
.w8{width:222.106667pt;}
.w6{width:261.666667pt;}
.w1b{width:296.800000pt;}
.w1f{width:297.133333pt;}
.w12{width:363.840000pt;}
.w4{width:544.666667pt;}
.w10{width:546.893333pt;}
.w3{width:572.266667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:2.066667pt;}
.x1f{left:4.000000pt;}
.xd{left:6.733333pt;}
.x2f{left:9.693333pt;}
.x2c{left:11.693333pt;}
.x17{left:13.333333pt;}
.x2e{left:14.693333pt;}
.x19{left:16.333333pt;}
.x3{left:18.700000pt;}
.x21{left:19.666667pt;}
.x1a{left:20.706667pt;}
.x20{left:21.706667pt;}
.x1c{left:24.333333pt;}
.x1e{left:26.360000pt;}
.x36{left:27.666667pt;}
.x28{left:29.000000pt;}
.x23{left:38.026667pt;}
.x22{left:41.026667pt;}
.x2a{left:50.026667pt;}
.x29{left:51.360000pt;}
.x16{left:54.026667pt;}
.x14{left:66.373333pt;}
.x32{left:92.026667pt;}
.x2{left:110.700000pt;}
.x1{left:123.066655pt;}
.x11{left:124.066655pt;}
.xc{left:125.000000pt;}
.x8{left:138.066655pt;}
.xe{left:142.399988pt;}
.x10{left:179.399988pt;}
.x30{left:196.773322pt;}
.x6{left:202.666667pt;}
.x7{left:205.773322pt;}
.x31{left:212.440000pt;}
.x24{left:230.773322pt;}
.x26{left:241.440000pt;}
.x38{left:257.439988pt;}
.x12{left:302.133322pt;}
.x2b{left:322.133333pt;}
.x13{left:333.133333pt;}
.x1b{left:382.840000pt;}
.x9{left:389.506655pt;}
.x25{left:397.506655pt;}
.xa{left:406.506655pt;}
.xf{left:425.506655pt;}
.x18{left:441.533333pt;}
.xb{left:478.199988pt;}
.x1d{left:492.866667pt;}
.x2d{left:501.866667pt;}
.x33{left:509.906667pt;}
.x15{left:555.906667pt;}
.x4{left:562.940000pt;}
.x34{left:566.906667pt;}
.x27{left:605.933333pt;}
.x35{left:615.933333pt;}
.x37{left:671.639988pt;}
}




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