
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_17aaf52fa1f3544a5786d847.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e0ad024ab65ffc08a78d882.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b2f5e6c140ffb4835e7009d3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0c202c6030a0c45a625b337d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_4acf6e01a20632103833d954.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_724f762ea16216544ab081ae.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_d687785c8fd851ca689c71db.woff')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_e8014866c8343c5a44bce202.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a0b6afb9b15d83f60a3083a2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.753906;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_278a53f212b4f41ac82dc7bb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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_bce5ab4937827ed642182885.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a6c1abec95f257a4a54fe783.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_948640e8f0b307fa6d257fff.woff')format("woff");}.ffe{font-family:ffe;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;}
.m3{transform:matrix(0.000000,-0.520476,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.520476,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.520476,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.120082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120082,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-8.640000px;}
.v10{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.640000px;}
.vb{vertical-align:12.600000px;}
.v2{vertical-align:15.120000px;}
.v8{vertical-align:20.880000px;}
.v7{vertical-align:24.840000px;}
.vc{vertical-align:30.240000px;}
.vd{vertical-align:35.280000px;}
.va{vertical-align:36.720000px;}
.v4{vertical-align:45.360000px;}
.v9{vertical-align:58.320000px;}
.ve{vertical-align:65.520000px;}
.vf{vertical-align:81.000000px;}
.ls37{letter-spacing:-2.130502px;}
.ls22{letter-spacing:-0.476400px;}
.ls1f{letter-spacing:-0.267600px;}
.ls10{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls1e{letter-spacing:-0.168000px;}
.ls9{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls23{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls36{letter-spacing:-0.048245px;}
.ls28{letter-spacing:-0.040320px;}
.lsb{letter-spacing:-0.008400px;}
.ls26{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls24{letter-spacing:0.041760px;}
.ls27{letter-spacing:0.042480px;}
.ls25{letter-spacing:0.043920px;}
.ls11{letter-spacing:0.045360px;}
.ls1c{letter-spacing:0.048960px;}
.ls35{letter-spacing:0.050760px;}
.ls2a{letter-spacing:0.051840px;}
.ls21{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.057000px;}
.ls4{letter-spacing:0.065520px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls2b{letter-spacing:0.098400px;}
.ls38{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.166320px;}
.ls1d{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls39{letter-spacing:0.180600px;}
.ls3c{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.241200px;}
.ls3b{letter-spacing:0.275400px;}
.ls34{letter-spacing:0.319800px;}
.ls0{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.411000px;}
.ls15{letter-spacing:1.379880px;}
.ls13{letter-spacing:1.620000px;}
.ls16{letter-spacing:1.885320px;}
.ls14{letter-spacing:1.980000px;}
.ls18{letter-spacing:2.558520px;}
.ls19{letter-spacing:25.380000px;}
.ls3d{letter-spacing:47.726640px;}
.ls32{letter-spacing:60.277369px;}
.ls1b{letter-spacing:67.860000px;}
.ls2f{letter-spacing:75.331563px;}
.ls3a{letter-spacing:80.846640px;}
.ls30{letter-spacing:83.035912px;}
.ls17{letter-spacing:83.700000px;}
.ls2d{letter-spacing:98.489188px;}
.ls2c{letter-spacing:106.193537px;}
.ls2e{letter-spacing:189.560989px;}
.ls33{letter-spacing:761.106047px;}
.ls31{letter-spacing:872.224054px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws2c{word-spacing:-13.407600px;}
.ws2b{word-spacing:-13.407000px;}
.wsc{word-spacing:-13.399800px;}
.ws2a{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.283400px;}
.ws11{word-spacing:-13.275360px;}
.ws15{word-spacing:-13.270320px;}
.ws17{word-spacing:-13.268880px;}
.ws14{word-spacing:-13.268160px;}
.ws6{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.220280px;}
.ws5{word-spacing:-13.039800px;}
.ws9{word-spacing:-12.982800px;}
.ws12{word-spacing:-12.750000px;}
.ws28{word-spacing:-11.602935px;}
.ws18{word-spacing:-10.944600px;}
.ws1a{word-spacing:-10.584360px;}
.ws13{word-spacing:-10.438800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws10{word-spacing:-9.358800px;}
.ws2{word-spacing:-9.266400px;}
.wse{word-spacing:-9.098400px;}
.wsf{word-spacing:-8.998800px;}
.wsa{word-spacing:-8.625600px;}
.ws4{word-spacing:-8.553600px;}
.ws1b{word-spacing:-5.573235px;}
.wsb{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
.ws29{word-spacing:12.879596px;}
.ws27{word-spacing:30.090440px;}
.ws22{word-spacing:30.129036px;}
.ws1e{word-spacing:53.248065px;}
.ws1c{word-spacing:53.286661px;}
.ws20{word-spacing:53.363853px;}
.ws1f{word-spacing:53.402449px;}
.ws21{word-spacing:57.169423px;}
.ws24{word-spacing:164.520456px;}
.ws1d{word-spacing:274.966891px;}
.ws23{word-spacing:386.084898px;}
.ws26{word-spacing:604.631129px;}
.ws25{word-spacing:1493.521147px;}
._10{margin-left:-3.923639px;}
._5{margin-left:-2.601360px;}
._0{margin-left:-1.110000px;}
._2{width:1.258284px;}
._3{width:2.886000px;}
._c{width:3.937231px;}
._6{width:4.957199px;}
._4{width:6.192600px;}
._9{width:7.695600px;}
._8{width:9.078000px;}
._7{width:10.480800px;}
._b{width:12.084120px;}
._d{width:14.248440px;}
._a{width:15.871800px;}
._17{width:17.143116px;}
._e{width:18.156240px;}
._f{width:19.715796px;}
._12{width:21.281520px;}
._11{width:22.304520px;}
._42{width:24.769440px;}
._18{width:25.851600px;}
._41{width:27.804315px;}
._13{width:30.270600px;}
._14{width:31.290720px;}
._1b{width:33.066000px;}
._1c{width:37.052201px;}
._31{width:38.153456px;}
._19{width:41.663160px;}
._15{width:53.266320px;}
._16{width:54.959160px;}
._30{width:60.209826px;}
._1{width:64.168200px;}
._36{width:65.784675px;}
._3c{width:87.420036px;}
._1f{width:143.983805px;}
._27{width:148.285996px;}
._3e{width:149.306511px;}
._32{width:152.956117px;}
._20{width:171.482217px;}
._1e{width:176.190934px;}
._35{width:251.146985px;}
._2a{width:264.537276px;}
._2c{width:282.600224px;}
._1d{width:287.540517px;}
._1a{width:355.008600px;}
._37{width:370.444816px;}
._33{width:375.346514px;}
._25{width:384.648160px;}
._23{width:393.409462px;}
._3d{width:394.474657px;}
._26{width:398.272563px;}
._3b{width:500.629268px;}
._28{width:504.162074px;}
._2d{width:509.776530px;}
._38{width:611.631486px;}
._34{width:616.263012px;}
._21{width:620.894537px;}
._2b{width:690.483201px;}
._3f{width:727.419614px;}
._39{width:833.944692px;}
._24{width:949.848607px;}
._2f{width:1047.457999px;}
._22{width:1051.394795px;}
._2e{width:1163.572925px;}
._29{width:1168.109228px;}
._40{width:1381.330786px;}
._3a{width:2154.469692px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:22.292942px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsa{font-size:46.411741px;}
.fs9{font-size:47.880000px;}
.fsc{font-size:53.359029px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yec{bottom:1.736822px;}
.y10f{bottom:2.315763px;}
.y108{bottom:2.315772px;}
.y111{bottom:2.894703px;}
.y112{bottom:2.894713px;}
.y113{bottom:2.923650px;}
.y101{bottom:3.469977px;}
.y7a{bottom:6.300000px;}
.y81{bottom:6.330000px;}
.y7f{bottom:6.390000px;}
.yb0{bottom:7.830000px;}
.yb5{bottom:7.860000px;}
.yb2{bottom:7.920000px;}
.y10d{bottom:17.966458px;}
.y107{bottom:17.971099px;}
.y105{bottom:17.971282px;}
.y103{bottom:17.975142px;}
.y10a{bottom:17.976107px;}
.y100{bottom:18.546363px;}
.yb9{bottom:25.470000px;}
.yff{bottom:33.622942px;}
.yfe{bottom:48.675399px;}
.yfd{bottom:63.751978px;}
.y10b{bottom:64.918544px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.yfc{bottom:78.828557px;}
.yfb{bottom:93.905136px;}
.y1{bottom:101.640000px;}
.yfa{bottom:108.985575px;}
.y6f{bottom:114.060000px;}
.y56{bottom:117.030000px;}
.yf9{bottom:124.038032px;}
.ye8{bottom:124.050000px;}
.y67{bottom:124.320000px;}
.y13e{bottom:124.500000px;}
.y55{bottom:134.580000px;}
.yd4{bottom:135.750000px;}
.yf8{bottom:139.109786px;}
.y13d{bottom:142.050000px;}
.yae{bottom:144.660000px;}
.y6e{bottom:146.280000px;}
.y8e{bottom:151.680000px;}
.y54{bottom:152.130000px;}
.yf7{bottom:154.191190px;}
.y66{bottom:156.540000px;}
.y26{bottom:158.790000px;}
.yad{bottom:162.210000px;}
.yd3{bottom:163.110000px;}
.ye7{bottom:165.090000px;}
.ye9{bottom:168.510000px;}
.y15e{bottom:168.870000px;}
.y13c{bottom:168.960000px;}
.y106{bottom:169.085264px;}
.y8d{bottom:169.230000px;}
.yf6{bottom:169.262945px;}
.y53{bottom:169.770000px;}
.y25{bottom:176.340000px;}
.yac{bottom:179.850000px;}
.yf5{bottom:184.344348px;}
.y15d{bottom:186.420000px;}
.y52{bottom:187.320000px;}
.y24{bottom:193.980000px;}
.yab{bottom:197.400000px;}
.yf4{bottom:199.396805px;}
.y8c{bottom:204.870000px;}
.yd2{bottom:208.020000px;}
.y23{bottom:211.530000px;}
.y15c{bottom:213.330000px;}
.y104{bottom:214.290696px;}
.yf3{bottom:214.468559px;}
.yaa{bottom:215.040000px;}
.y13b{bottom:217.200000px;}
.y8b{bottom:222.420000px;}
.y51{bottom:222.960000px;}
.y22{bottom:229.170000px;}
.yf2{bottom:229.549963px;}
.ya9{bottom:232.590000px;}
.y13a{bottom:234.840000px;}
.yd1{bottom:235.380000px;}
.y181{bottom:239.610000px;}
.y8a{bottom:240.060000px;}
.yf1{bottom:244.621718px;}
.ya8{bottom:250.140000px;}
.y139{bottom:252.390000px;}
.y50{bottom:255.270000px;}
.y180{bottom:257.250000px;}
.y102{bottom:259.520433px;}
.yf0{bottom:259.703121px;}
.y15b{bottom:261.570000px;}
.yd0{bottom:262.740000px;}
.y4f{bottom:262.830000px;}
.y21{bottom:264.720000px;}
.ya7{bottom:267.780000px;}
.y138{bottom:269.940000px;}
.yef{bottom:274.755578px;}
.y89{bottom:275.610000px;}
.y20{bottom:282.270000px;}
.y17f{bottom:283.800000px;}
.ya6{bottom:285.330000px;}
.y15a{bottom:288.480000px;}
.yee{bottom:289.827333px;}
.ycf{bottom:290.010000px;}
.y88{bottom:293.160000px;}
.y1f{bottom:299.910000px;}
.y17e{bottom:301.440000px;}
.y4e{bottom:304.410000px;}
.y110{bottom:304.725083px;}
.yed{bottom:304.908736px;}
.y137{bottom:305.580000px;}
.y87{bottom:310.800000px;}
.yce{bottom:317.370000px;}
.y1e{bottom:317.460000px;}
.y17d{bottom:318.990000px;}
.ya5{bottom:320.970000px;}
.y136{bottom:323.130000px;}
.y159{bottom:325.560000px;}
.y86{bottom:337.350000px;}
.y4d{bottom:340.050000px;}
.y135{bottom:340.770000px;}
.ycd{bottom:344.730000px;}
.y17c{bottom:345.540000px;}
.y109{bottom:349.930698px;}
.y158{bottom:352.470000px;}
.y1d{bottom:353.100000px;}
.ya4{bottom:355.800000px;}
.y134{bottom:358.320000px;}
.y17b{bottom:363.180000px;}
.ya3{bottom:367.230000px;}
.y85{bottom:370.380000px;}
.y1c{bottom:370.650000px;}
.y4c{bottom:375.600000px;}
.y133{bottom:375.870000px;}
.yea{bottom:382.004331px;}
.y1b{bottom:388.200000px;}
.y157{bottom:389.460000px;}
.y17a{bottom:389.730000px;}
.ycc{bottom:393.420000px;}
.y84{bottom:394.680000px;}
.y10e{bottom:395.165260px;}
.y1a{bottom:405.840000px;}
.y6d{bottom:406.110000px;}
.y156{bottom:407.010000px;}
.y179{bottom:407.370000px;}
.y4b{bottom:411.150000px;}
.y132{bottom:411.510000px;}
.y83{bottom:418.980000px;}
.y19{bottom:423.390000px;}
.ycb{bottom:428.250000px;}
.y131{bottom:429.060000px;}
.y155{bottom:433.920000px;}
.y10c{bottom:440.370875px;}
.y6c{bottom:441.750000px;}
.yca{bottom:442.380000px;}
.y82{bottom:443.370000px;}
.y130{bottom:446.700000px;}
.y4a{bottom:446.790000px;}
.y65{bottom:450.120000px;}
.y18{bottom:450.300000px;}
.y178{bottom:451.470000px;}
.yc9{bottom:454.530000px;}
.y9e{bottom:461.910000px;}
.y12f{bottom:464.250000px;}
.y80{bottom:467.670000px;}
.y154{bottom:471.030000px;}
.y6b{bottom:474.000000px;}
.y177{bottom:478.140000px;}
.y49{bottom:479.040000px;}
.y12e{bottom:481.830000px;}
.yc8{bottom:481.920000px;}
.yeb{bottom:485.595788px;}
.y64{bottom:485.790000px;}
.y47{bottom:486.600000px;}
.y153{bottom:488.580000px;}
.y7e{bottom:492.000000px;}
.y48{bottom:492.720000px;}
.y176{bottom:495.690000px;}
.y9d{bottom:496.770000px;}
.y17{bottom:498.930000px;}
.y152{bottom:506.220000px;}
.y9c{bottom:508.200000px;}
.yc7{bottom:509.190000px;}
.y7d{bottom:516.390000px;}
.y12d{bottom:517.470000px;}
.y63{bottom:518.550000px;}
.y175{bottom:522.330000px;}
.y151{bottom:523.770000px;}
.y12c{bottom:535.020000px;}
.y16{bottom:535.920000px;}
.y46{bottom:536.280000px;}
.yc6{bottom:536.550000px;}
.y174{bottom:539.880000px;}
.y7c{bottom:540.690000px;}
.y150{bottom:541.320000px;}
.y12b{bottom:552.660000px;}
.y15{bottom:553.560000px;}
.y14f{bottom:558.960000px;}
.y45{bottom:563.190000px;}
.y7b{bottom:565.080000px;}
.y173{bottom:566.430000px;}
.y14{bottom:571.110000px;}
.yc5{bottom:581.460000px;}
.y172{bottom:584.070000px;}
.y14e{bottom:585.870000px;}
.y12a{bottom:588.210000px;}
.y13{bottom:588.750000px;}
.y79{bottom:589.380000px;}
.y129{bottom:605.760000px;}
.y12{bottom:606.300000px;}
.yc4{bottom:608.820000px;}
.y171{bottom:610.620000px;}
.y44{bottom:611.430000px;}
.y14d{bottom:623.220000px;}
.y128{bottom:623.400000px;}
.y11{bottom:623.850000px;}
.y170{bottom:628.260000px;}
.y43{bottom:629.070000px;}
.y78{bottom:635.100000px;}
.yc3{bottom:636.180000px;}
.y127{bottom:640.950000px;}
.y10{bottom:641.490000px;}
.y42{bottom:646.620000px;}
.ye6{bottom:647.700000px;}
.y16f{bottom:654.810000px;}
.yf{bottom:659.040000px;}
.yc2{bottom:663.450000px;}
.y41{bottom:664.260000px;}
.y77{bottom:670.650000px;}
.y14c{bottom:671.460000px;}
.y16e{bottom:672.360000px;}
.y126{bottom:676.590000px;}
.ye{bottom:676.680000px;}
.y40{bottom:681.810000px;}
.ye5{bottom:682.530000px;}
.y76{bottom:688.290000px;}
.y14b{bottom:689.010000px;}
.yc1{bottom:690.810000px;}
.y125{bottom:694.140000px;}
.ye4{bottom:696.660000px;}
.y16d{bottom:699.000000px;}
.y3f{bottom:699.360000px;}
.yd{bottom:703.590000px;}
.y75{bottom:705.840000px;}
.y14a{bottom:706.650000px;}
.ye3{bottom:708.810000px;}
.y124{bottom:711.690000px;}
.ya2{bottom:712.590000px;}
.y16c{bottom:716.550000px;}
.y3e{bottom:717.000000px;}
.yc0{bottom:718.170000px;}
.y74{bottom:723.390000px;}
.y149{bottom:724.200000px;}
.y123{bottom:729.330000px;}
.y16b{bottom:734.190000px;}
.y3d{bottom:734.550000px;}
.ye2{bottom:736.170000px;}
.y73{bottom:741.030000px;}
.y148{bottom:741.840000px;}
.y6a{bottom:742.830000px;}
.ya1{bottom:748.230000px;}
.yc{bottom:751.830000px;}
.y3c{bottom:752.190000px;}
.y147{bottom:759.390000px;}
.y16a{bottom:760.740000px;}
.ye1{bottom:763.530000px;}
.y122{bottom:764.880000px;}
.ybf{bottom:766.860000px;}
.y72{bottom:767.580000px;}
.y3b{bottom:769.740000px;}
.y146{bottom:776.940000px;}
.y169{bottom:778.290000px;}
.y69{bottom:778.470000px;}
.y121{bottom:782.520000px;}
.ya0{bottom:783.060000px;}
.yb{bottom:787.380000px;}
.ye0{bottom:790.800000px;}
.y9f{bottom:794.490000px;}
.y145{bottom:794.580000px;}
.y120{bottom:800.070000px;}
.y62{bottom:800.880000px;}
.ybe{bottom:801.690000px;}
.y71{bottom:803.220000px;}
.y168{bottom:804.930000px;}
.y3a{bottom:805.290000px;}
.y68{bottom:810.690000px;}
.y144{bottom:812.130000px;}
.ybd{bottom:815.820000px;}
.y11f{bottom:817.620000px;}
.y9b{bottom:822.030000px;}
.y167{bottom:822.480000px;}
.y39{bottom:822.930000px;}
.ya{bottom:823.200000px;}
.ybc{bottom:827.970000px;}
.y143{bottom:829.770000px;}
.y11e{bottom:835.260000px;}
.y70{bottom:835.440000px;}
.ydf{bottom:835.710000px;}
.y61{bottom:836.520000px;}
.y9a{bottom:839.670000px;}
.y38{bottom:840.480000px;}
.y142{bottom:847.320000px;}
.y166{bottom:849.030000px;}
.y60{bottom:854.070000px;}
.ybb{bottom:855.330000px;}
.y37{bottom:858.030000px;}
.y9{bottom:862.980000px;}
.yde{bottom:863.070000px;}
.y141{bottom:864.870000px;}
.y165{bottom:866.670000px;}
.y11d{bottom:870.810000px;}
.y5f{bottom:871.620000px;}
.y99{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y8{bottom:880.980000px;}
.y140{bottom:882.510000px;}
.yba{bottom:882.600000px;}
.y11c{bottom:888.450000px;}
.y5e{bottom:889.260000px;}
.ydd{bottom:890.430000px;}
.y98{bottom:892.860000px;}
.y35{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y5d{bottom:906.810000px;}
.y13f{bottom:909.420000px;}
.yb8{bottom:909.960000px;}
.y97{bottom:910.410000px;}
.y164{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.y11b{bottom:924.000000px;}
.y5c{bottom:924.450000px;}
.y96{bottom:927.960000px;}
.y34{bottom:928.860000px;}
.ydc{bottom:935.340000px;}
.y163{bottom:937.410000px;}
.y11a{bottom:941.550000px;}
.y5b{bottom:942.000000px;}
.y33{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yb7{bottom:954.870000px;}
.y162{bottom:954.960000px;}
.y119{bottom:959.190000px;}
.y5a{bottom:959.550000px;}
.ydb{bottom:962.700000px;}
.y95{bottom:963.600000px;}
.y32{bottom:963.960000px;}
.y161{bottom:972.600000px;}
.y59{bottom:977.190000px;}
.y94{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.yb6{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.yda{bottom:989.970000px;}
.y58{bottom:994.740000px;}
.y93{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.yb4{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y92{bottom:1016.370000px;}
.y2f{bottom:1016.820000px;}
.y57{bottom:1021.680000px;}
.y118{bottom:1029.960000px;}
.y2e{bottom:1034.370000px;}
.yb3{bottom:1036.890000px;}
.yd9{bottom:1038.780000px;}
.y91{bottom:1051.920000px;}
.y160{bottom:1060.920000px;}
.yb1{bottom:1064.250000px;}
.y117{bottom:1065.510000px;}
.y90{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.yd8{bottom:1073.610000px;}
.y15f{bottom:1078.560000px;}
.y116{bottom:1083.150000px;}
.y8f{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.yd7{bottom:1087.650000px;}
.yaf{bottom:1091.610000px;}
.yd6{bottom:1099.890000px;}
.y115{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.yd5{bottom:1127.160000px;}
.y114{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h24{height:22.467105px;}
.h13{height:23.580000px;}
.h18{height:23.610000px;}
.h17{height:23.670000px;}
.h1b{height:26.550000px;}
.h1d{height:26.580000px;}
.h1c{height:26.640000px;}
.h1f{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h1a{height:41.661211px;}
.h1e{height:44.190000px;}
.h25{height:44.626674px;}
.h27{height:44.650797px;}
.h19{height:45.720703px;}
.h22{height:46.774333px;}
.h14{height:50.902383px;}
.h8{height:52.311445px;}
.h26{height:52.342915px;}
.h9{height:55.779258px;}
.h7{height:56.704219px;}
.h5{height:57.323320px;}
.h15{height:59.973223px;}
.ha{height:60.960938px;}
.h16{height:61.793886px;}
.h12{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.he{height:82.551445px;}
.h20{height:84.535312px;}
.h11{height:89.244492px;}
.h29{height:89.856412px;}
.hf{height:90.750234px;}
.hd{height:98.310234px;}
.hc{height:110.550234px;}
.h10{height:120.990234px;}
.h23{height:137.951905px;}
.h28{height:225.497379px;}
.h21{height:455.043661px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w20{width:12.513711px;}
.w1d{width:12.525298px;}
.w1e{width:13.069876px;}
.w1f{width:13.081463px;}
.w1c{width:13.347958px;}
.w14{width:24.480000px;}
.w7{width:24.570000px;}
.w10{width:30.870000px;}
.w8{width:32.220000px;}
.w12{width:34.110000px;}
.wd{width:34.830000px;}
.wb{width:34.920000px;}
.w11{width:38.610000px;}
.wf{width:43.020000px;}
.w15{width:43.470000px;}
.w17{width:43.500000px;}
.w19{width:43.560000px;}
.w16{width:43.650000px;}
.wa{width:43.680000px;}
.w18{width:43.830000px;}
.wc{width:43.920000px;}
.w1a{width:45.720000px;}
.we{width:45.810000px;}
.w9{width:57.960000px;}
.w23{width:62.591722px;}
.w5{width:123.120000px;}
.w4{width:139.800000px;}
.w21{width:150.502848px;}
.w22{width:163.294641px;}
.w13{width:226.740000px;}
.w6{width:282.270000px;}
.w3{width:351.750000px;}
.w1b{width:739.971923px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x69{left:6.117815px;}
.x17{left:7.650000px;}
.x3c{left:10.567134px;}
.x66{left:30.322572px;}
.x65{left:36.451973px;}
.x64{left:44.238281px;}
.x68{left:52.024589px;}
.x67{left:64.816381px;}
.x1{left:68.040000px;}
.x39{left:70.553077px;}
.x63{left:83.344873px;}
.x1c{left:94.769987px;}
.x38{left:109.439987px;}
.x6b{left:111.239987px;}
.x2c{left:122.399987px;}
.x2b{left:123.839987px;}
.x16{left:138.600000px;}
.x3a{left:164.406970px;}
.x15{left:185.429987px;}
.x2{left:192.719987px;}
.x62{left:227.286044px;}
.xd{left:231.239987px;}
.x6a{left:234.121169px;}
.x11{left:255.179987px;}
.xb{left:260.309987px;}
.x13{left:265.259987px;}
.xf{left:266.519987px;}
.x1b{left:269.309987px;}
.x1e{left:281.549987px;}
.x2d{left:296.310000px;}
.x3b{left:306.737758px;}
.x3d{left:320.363797px;}
.x2e{left:321.600000px;}
.x3e{left:333.169493px;}
.x3f{left:346.517450px;}
.x20{left:351.750000px;}
.x40{left:359.874676px;}
.x2f{left:365.790000px;}
.x7{left:369.659987px;}
.x41{left:373.222633px;}
.x21{left:377.040000px;}
.x42{left:386.570590px;}
.x8{left:398.639987px;}
.x43{left:399.932451px;}
.x4{left:408.629987px;}
.x22{left:409.980000px;}
.x44{left:413.280407px;}
.x30{left:424.560000px;}
.x45{left:426.637634px;}
.x46{left:439.985590px;}
.x9{left:449.759987px;}
.x6{left:451.109987px;}
.x47{left:453.347451px;}
.x5{left:454.889987px;}
.x48{left:466.139243px;}
.x23{left:468.750000px;}
.x49{left:479.482565px;}
.x18{left:491.070000px;}
.x4a{left:492.844426px;}
.x4b{left:506.192383px;}
.x24{left:513.240000px;}
.x4c{left:519.554244px;}
.x4d{left:532.897566px;}
.x4e{left:545.703262px;}
.x25{left:548.880000px;}
.x31{left:557.880000px;}
.x4f{left:559.051219px;}
.x50{left:572.413080px;}
.x51{left:585.756402px;}
.x26{left:593.520000px;}
.x52{left:599.108994px;}
.x12{left:600.809987px;}
.x32{left:602.160000px;}
.x53{left:612.466220px;}
.x10{left:622.139987px;}
.x54{left:625.814177px;}
.x27{left:629.070000px;}
.x19{left:631.590000px;}
.x55{left:638.619873px;}
.x33{left:648.690000px;}
.x56{left:651.967830px;}
.xe{left:660.389987px;}
.x57{left:665.325056px;}
.xc{left:670.559987px;}
.xa{left:671.639987px;}
.x28{left:675.600000px;}
.x58{left:678.116848px;}
.x59{left:690.908640px;}
.x34{left:692.430000px;}
.x14{left:697.559987px;}
.x5a{left:703.709701px;}
.x1a{left:705.389987px;}
.x1d{left:712.139987px;}
.x5b{left:717.062293px;}
.x1f{left:720.059987px;}
.x5c{left:730.419519px;}
.x35{left:736.710000px;}
.x5d{left:743.767476px;}
.x29{left:751.020000px;}
.x5e{left:757.124702px;}
.x5f{left:770.477293px;}
.x36{left:780.990000px;}
.x60{left:783.825250px;}
.x2a{left:790.350000px;}
.x61{left:797.182476px;}
.x3{left:800.339987px;}
.x37{left:812.849987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-7.680000pt;}
.v10{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.680000pt;}
.vb{vertical-align:11.200000pt;}
.v2{vertical-align:13.440000pt;}
.v8{vertical-align:18.560000pt;}
.v7{vertical-align:22.080000pt;}
.vc{vertical-align:26.880000pt;}
.vd{vertical-align:31.360000pt;}
.va{vertical-align:32.640000pt;}
.v4{vertical-align:40.320000pt;}
.v9{vertical-align:51.840000pt;}
.ve{vertical-align:58.240000pt;}
.vf{vertical-align:72.000000pt;}
.ls37{letter-spacing:-1.893779pt;}
.ls22{letter-spacing:-0.423467pt;}
.ls1f{letter-spacing:-0.237867pt;}
.ls10{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls1e{letter-spacing:-0.149333pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls23{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls36{letter-spacing:-0.042884pt;}
.ls28{letter-spacing:-0.035840pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls26{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls24{letter-spacing:0.037120pt;}
.ls27{letter-spacing:0.037760pt;}
.ls25{letter-spacing:0.039040pt;}
.ls11{letter-spacing:0.040320pt;}
.ls1c{letter-spacing:0.043520pt;}
.ls35{letter-spacing:0.045120pt;}
.ls2a{letter-spacing:0.046080pt;}
.ls21{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.050667pt;}
.ls4{letter-spacing:0.058240pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2b{letter-spacing:0.087467pt;}
.ls38{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.147840pt;}
.ls1d{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls39{letter-spacing:0.160533pt;}
.ls3c{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.214400pt;}
.ls3b{letter-spacing:0.244800pt;}
.ls34{letter-spacing:0.284267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.365333pt;}
.ls15{letter-spacing:1.226560pt;}
.ls13{letter-spacing:1.440000pt;}
.ls16{letter-spacing:1.675840pt;}
.ls14{letter-spacing:1.760000pt;}
.ls18{letter-spacing:2.274240pt;}
.ls19{letter-spacing:22.560000pt;}
.ls3d{letter-spacing:42.423680pt;}
.ls32{letter-spacing:53.579884pt;}
.ls1b{letter-spacing:60.320000pt;}
.ls2f{letter-spacing:66.961389pt;}
.ls3a{letter-spacing:71.863680pt;}
.ls30{letter-spacing:73.809699pt;}
.ls17{letter-spacing:74.400000pt;}
.ls2d{letter-spacing:87.545945pt;}
.ls2c{letter-spacing:94.394256pt;}
.ls2e{letter-spacing:168.498657pt;}
.ls33{letter-spacing:676.538709pt;}
.ls31{letter-spacing:775.310270pt;}
.ws8{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws2c{word-spacing:-11.917867pt;}
.ws2b{word-spacing:-11.917333pt;}
.wsc{word-spacing:-11.910933pt;}
.ws2a{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.807467pt;}
.ws11{word-spacing:-11.800320pt;}
.ws15{word-spacing:-11.795840pt;}
.ws17{word-spacing:-11.794560pt;}
.ws14{word-spacing:-11.793920pt;}
.ws6{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.751360pt;}
.ws5{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.540267pt;}
.ws12{word-spacing:-11.333333pt;}
.ws28{word-spacing:-10.313720pt;}
.ws18{word-spacing:-9.728533pt;}
.ws1a{word-spacing:-9.408320pt;}
.ws13{word-spacing:-9.278933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws10{word-spacing:-8.318933pt;}
.ws2{word-spacing:-8.236800pt;}
.wse{word-spacing:-8.087467pt;}
.wsf{word-spacing:-7.998933pt;}
.wsa{word-spacing:-7.667200pt;}
.ws4{word-spacing:-7.603200pt;}
.ws1b{word-spacing:-4.953987pt;}
.wsb{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
.ws29{word-spacing:11.448530pt;}
.ws27{word-spacing:26.747057pt;}
.ws22{word-spacing:26.781365pt;}
.ws1e{word-spacing:47.331614pt;}
.ws1c{word-spacing:47.365921pt;}
.ws20{word-spacing:47.434536pt;}
.ws1f{word-spacing:47.468844pt;}
.ws21{word-spacing:50.817265pt;}
.ws24{word-spacing:146.240405pt;}
.ws1d{word-spacing:244.415014pt;}
.ws23{word-spacing:343.186576pt;}
.ws26{word-spacing:537.449893pt;}
.ws25{word-spacing:1327.574353pt;}
._10{margin-left:-3.487679pt;}
._5{margin-left:-2.312320pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.118475pt;}
._3{width:2.565334pt;}
._c{width:3.499761pt;}
._6{width:4.406399pt;}
._4{width:5.504534pt;}
._9{width:6.840534pt;}
._8{width:8.069333pt;}
._7{width:9.316267pt;}
._b{width:10.741440pt;}
._d{width:12.665280pt;}
._a{width:14.108267pt;}
._17{width:15.238325pt;}
._e{width:16.138880pt;}
._f{width:17.525152pt;}
._12{width:18.916907pt;}
._11{width:19.826240pt;}
._42{width:22.017280pt;}
._18{width:22.979200pt;}
._41{width:24.714947pt;}
._13{width:26.907200pt;}
._14{width:27.813973pt;}
._1b{width:29.392000pt;}
._1c{width:32.935290pt;}
._31{width:33.914183pt;}
._19{width:37.033920pt;}
._15{width:47.347840pt;}
._16{width:48.852587pt;}
._30{width:53.519846pt;}
._1{width:57.038400pt;}
._36{width:58.475267pt;}
._3c{width:77.706699pt;}
._1f{width:127.985604pt;}
._27{width:131.809774pt;}
._3e{width:132.716899pt;}
._32{width:135.960993pt;}
._20{width:152.428637pt;}
._1e{width:156.614164pt;}
._35{width:223.241764pt;}
._2a{width:235.144245pt;}
._2c{width:251.200199pt;}
._1d{width:255.591571pt;}
._1a{width:315.563200pt;}
._37{width:329.284281pt;}
._33{width:333.641346pt;}
._25{width:341.909476pt;}
._23{width:349.697299pt;}
._3d{width:350.644139pt;}
._26{width:354.020056pt;}
._3b{width:445.003794pt;}
._28{width:448.144066pt;}
._2d{width:453.134693pt;}
._38{width:543.672432pt;}
._34{width:547.789344pt;}
._21{width:551.906255pt;}
._2b{width:613.762846pt;}
._3f{width:646.595213pt;}
._39{width:741.284170pt;}
._24{width:844.309873pt;}
._2f{width:931.073777pt;}
._22{width:934.573151pt;}
._2e{width:1034.287045pt;}
._29{width:1038.319314pt;}
._40{width:1227.849588pt;}
._3a{width:1915.084170pt;}
.fsb{font-size:19.815948pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsa{font-size:41.254881pt;}
.fs9{font-size:42.560000pt;}
.fsc{font-size:47.430248pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:1.543842pt;}
.y10f{bottom:2.058456pt;}
.y108{bottom:2.058464pt;}
.y111{bottom:2.573070pt;}
.y112{bottom:2.573078pt;}
.y113{bottom:2.598800pt;}
.y101{bottom:3.084424pt;}
.y7a{bottom:5.600000pt;}
.y81{bottom:5.626667pt;}
.y7f{bottom:5.680000pt;}
.yb0{bottom:6.960000pt;}
.yb5{bottom:6.986667pt;}
.yb2{bottom:7.040000pt;}
.y10d{bottom:15.970185pt;}
.y107{bottom:15.974310pt;}
.y105{bottom:15.974473pt;}
.y103{bottom:15.977904pt;}
.y10a{bottom:15.978762pt;}
.y100{bottom:16.485656pt;}
.yb9{bottom:22.640000pt;}
.yff{bottom:29.887060pt;}
.yfe{bottom:43.267021pt;}
.yfd{bottom:56.668425pt;}
.y10b{bottom:57.705372pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.yfc{bottom:70.069829pt;}
.yfb{bottom:83.471232pt;}
.y1{bottom:90.346667pt;}
.yfa{bottom:96.876067pt;}
.y6f{bottom:101.386667pt;}
.y56{bottom:104.026667pt;}
.yf9{bottom:110.256028pt;}
.ye8{bottom:110.266667pt;}
.y67{bottom:110.506667pt;}
.y13e{bottom:110.666667pt;}
.y55{bottom:119.626667pt;}
.yd4{bottom:120.666667pt;}
.yf8{bottom:123.653143pt;}
.y13d{bottom:126.266667pt;}
.yae{bottom:128.586667pt;}
.y6e{bottom:130.026667pt;}
.y8e{bottom:134.826667pt;}
.y54{bottom:135.226667pt;}
.yf7{bottom:137.058836pt;}
.y66{bottom:139.146667pt;}
.y26{bottom:141.146667pt;}
.yad{bottom:144.186667pt;}
.yd3{bottom:144.986667pt;}
.ye7{bottom:146.746667pt;}
.ye9{bottom:149.786667pt;}
.y15e{bottom:150.106667pt;}
.y13c{bottom:150.186667pt;}
.y106{bottom:150.298013pt;}
.y8d{bottom:150.426667pt;}
.yf6{bottom:150.455951pt;}
.y53{bottom:150.906667pt;}
.y25{bottom:156.746667pt;}
.yac{bottom:159.866667pt;}
.yf5{bottom:163.861643pt;}
.y15d{bottom:165.706667pt;}
.y52{bottom:166.506667pt;}
.y24{bottom:172.426667pt;}
.yab{bottom:175.466667pt;}
.yf4{bottom:177.241604pt;}
.y8c{bottom:182.106667pt;}
.yd2{bottom:184.906667pt;}
.y23{bottom:188.026667pt;}
.y15c{bottom:189.626667pt;}
.y104{bottom:190.480619pt;}
.yf3{bottom:190.638720pt;}
.yaa{bottom:191.146667pt;}
.y13b{bottom:193.066667pt;}
.y8b{bottom:197.706667pt;}
.y51{bottom:198.186667pt;}
.y22{bottom:203.706667pt;}
.yf2{bottom:204.044412pt;}
.ya9{bottom:206.746667pt;}
.y13a{bottom:208.746667pt;}
.yd1{bottom:209.226667pt;}
.y181{bottom:212.986667pt;}
.y8a{bottom:213.386667pt;}
.yf1{bottom:217.441527pt;}
.ya8{bottom:222.346667pt;}
.y139{bottom:224.346667pt;}
.y50{bottom:226.906667pt;}
.y180{bottom:228.666667pt;}
.y102{bottom:230.684830pt;}
.yf0{bottom:230.847219pt;}
.y15b{bottom:232.506667pt;}
.yd0{bottom:233.546667pt;}
.y4f{bottom:233.626667pt;}
.y21{bottom:235.306667pt;}
.ya7{bottom:238.026667pt;}
.y138{bottom:239.946667pt;}
.yef{bottom:244.227180pt;}
.y89{bottom:244.986667pt;}
.y20{bottom:250.906667pt;}
.y17f{bottom:252.266667pt;}
.ya6{bottom:253.626667pt;}
.y15a{bottom:256.426667pt;}
.yee{bottom:257.624296pt;}
.ycf{bottom:257.786667pt;}
.y88{bottom:260.586667pt;}
.y1f{bottom:266.586667pt;}
.y17e{bottom:267.946667pt;}
.y4e{bottom:270.586667pt;}
.y110{bottom:270.866741pt;}
.yed{bottom:271.029988pt;}
.y137{bottom:271.626667pt;}
.y87{bottom:276.266667pt;}
.yce{bottom:282.106667pt;}
.y1e{bottom:282.186667pt;}
.y17d{bottom:283.546667pt;}
.ya5{bottom:285.306667pt;}
.y136{bottom:287.226667pt;}
.y159{bottom:289.386667pt;}
.y86{bottom:299.866667pt;}
.y4d{bottom:302.266667pt;}
.y135{bottom:302.906667pt;}
.ycd{bottom:306.426667pt;}
.y17c{bottom:307.146667pt;}
.y109{bottom:311.049509pt;}
.y158{bottom:313.306667pt;}
.y1d{bottom:313.866667pt;}
.ya4{bottom:316.266667pt;}
.y134{bottom:318.506667pt;}
.y17b{bottom:322.826667pt;}
.ya3{bottom:326.426667pt;}
.y85{bottom:329.226667pt;}
.y1c{bottom:329.466667pt;}
.y4c{bottom:333.866667pt;}
.y133{bottom:334.106667pt;}
.yea{bottom:339.559406pt;}
.y1b{bottom:345.066667pt;}
.y157{bottom:346.186667pt;}
.y17a{bottom:346.426667pt;}
.ycc{bottom:349.706667pt;}
.y84{bottom:350.826667pt;}
.y10e{bottom:351.258009pt;}
.y1a{bottom:360.746667pt;}
.y6d{bottom:360.986667pt;}
.y156{bottom:361.786667pt;}
.y179{bottom:362.106667pt;}
.y4b{bottom:365.466667pt;}
.y132{bottom:365.786667pt;}
.y83{bottom:372.426667pt;}
.y19{bottom:376.346667pt;}
.ycb{bottom:380.666667pt;}
.y131{bottom:381.386667pt;}
.y155{bottom:385.706667pt;}
.y10c{bottom:391.440778pt;}
.y6c{bottom:392.666667pt;}
.yca{bottom:393.226667pt;}
.y82{bottom:394.106667pt;}
.y130{bottom:397.066667pt;}
.y4a{bottom:397.146667pt;}
.y65{bottom:400.106667pt;}
.y18{bottom:400.266667pt;}
.y178{bottom:401.306667pt;}
.yc9{bottom:404.026667pt;}
.y9e{bottom:410.586667pt;}
.y12f{bottom:412.666667pt;}
.y80{bottom:415.706667pt;}
.y154{bottom:418.693333pt;}
.y6b{bottom:421.333333pt;}
.y177{bottom:425.013333pt;}
.y49{bottom:425.813333pt;}
.y12e{bottom:428.293333pt;}
.yc8{bottom:428.373333pt;}
.yeb{bottom:431.640700pt;}
.y64{bottom:431.813333pt;}
.y47{bottom:432.533333pt;}
.y153{bottom:434.293333pt;}
.y7e{bottom:437.333333pt;}
.y48{bottom:437.973333pt;}
.y176{bottom:440.613333pt;}
.y9d{bottom:441.573333pt;}
.y17{bottom:443.493333pt;}
.y152{bottom:449.973333pt;}
.y9c{bottom:451.733333pt;}
.yc7{bottom:452.613333pt;}
.y7d{bottom:459.013333pt;}
.y12d{bottom:459.973333pt;}
.y63{bottom:460.933333pt;}
.y175{bottom:464.293333pt;}
.y151{bottom:465.573333pt;}
.y12c{bottom:475.573333pt;}
.y16{bottom:476.373333pt;}
.y46{bottom:476.693333pt;}
.yc6{bottom:476.933333pt;}
.y174{bottom:479.893333pt;}
.y7c{bottom:480.613333pt;}
.y150{bottom:481.173333pt;}
.y12b{bottom:491.253333pt;}
.y15{bottom:492.053333pt;}
.y14f{bottom:496.853333pt;}
.y45{bottom:500.613333pt;}
.y7b{bottom:502.293333pt;}
.y173{bottom:503.493333pt;}
.y14{bottom:507.653333pt;}
.yc5{bottom:516.853333pt;}
.y172{bottom:519.173333pt;}
.y14e{bottom:520.773333pt;}
.y12a{bottom:522.853333pt;}
.y13{bottom:523.333333pt;}
.y79{bottom:523.893333pt;}
.y129{bottom:538.453333pt;}
.y12{bottom:538.933333pt;}
.yc4{bottom:541.173333pt;}
.y171{bottom:542.773333pt;}
.y44{bottom:543.493333pt;}
.y14d{bottom:553.973333pt;}
.y128{bottom:554.133333pt;}
.y11{bottom:554.533333pt;}
.y170{bottom:558.453333pt;}
.y43{bottom:559.173333pt;}
.y78{bottom:564.533333pt;}
.yc3{bottom:565.493333pt;}
.y127{bottom:569.733333pt;}
.y10{bottom:570.213333pt;}
.y42{bottom:574.773333pt;}
.ye6{bottom:575.733333pt;}
.y16f{bottom:582.053333pt;}
.yf{bottom:585.813333pt;}
.yc2{bottom:589.733333pt;}
.y41{bottom:590.453333pt;}
.y77{bottom:596.133333pt;}
.y14c{bottom:596.853333pt;}
.y16e{bottom:597.653333pt;}
.y126{bottom:601.413333pt;}
.ye{bottom:601.493333pt;}
.y40{bottom:606.053333pt;}
.ye5{bottom:606.693333pt;}
.y76{bottom:611.813333pt;}
.y14b{bottom:612.453333pt;}
.yc1{bottom:614.053333pt;}
.y125{bottom:617.013333pt;}
.ye4{bottom:619.253333pt;}
.y16d{bottom:621.333333pt;}
.y3f{bottom:621.653333pt;}
.yd{bottom:625.413333pt;}
.y75{bottom:627.413333pt;}
.y14a{bottom:628.133333pt;}
.ye3{bottom:630.053333pt;}
.y124{bottom:632.613333pt;}
.ya2{bottom:633.413333pt;}
.y16c{bottom:636.933333pt;}
.y3e{bottom:637.333333pt;}
.yc0{bottom:638.373333pt;}
.y74{bottom:643.013333pt;}
.y149{bottom:643.733333pt;}
.y123{bottom:648.293333pt;}
.y16b{bottom:652.613333pt;}
.y3d{bottom:652.933333pt;}
.ye2{bottom:654.373333pt;}
.y73{bottom:658.693333pt;}
.y148{bottom:659.413333pt;}
.y6a{bottom:660.293333pt;}
.ya1{bottom:665.093333pt;}
.yc{bottom:668.293333pt;}
.y3c{bottom:668.613333pt;}
.y147{bottom:675.013333pt;}
.y16a{bottom:676.213333pt;}
.ye1{bottom:678.693333pt;}
.y122{bottom:679.893333pt;}
.ybf{bottom:681.653333pt;}
.y72{bottom:682.293333pt;}
.y3b{bottom:684.213333pt;}
.y146{bottom:690.613333pt;}
.y169{bottom:691.813333pt;}
.y69{bottom:691.973333pt;}
.y121{bottom:695.573333pt;}
.ya0{bottom:696.053333pt;}
.yb{bottom:699.893333pt;}
.ye0{bottom:702.933333pt;}
.y9f{bottom:706.213333pt;}
.y145{bottom:706.293333pt;}
.y120{bottom:711.173333pt;}
.y62{bottom:711.893333pt;}
.ybe{bottom:712.613333pt;}
.y71{bottom:713.973333pt;}
.y168{bottom:715.493333pt;}
.y3a{bottom:715.813333pt;}
.y68{bottom:720.613333pt;}
.y144{bottom:721.893333pt;}
.ybd{bottom:725.173333pt;}
.y11f{bottom:726.773333pt;}
.y9b{bottom:730.693333pt;}
.y167{bottom:731.093333pt;}
.y39{bottom:731.493333pt;}
.ya{bottom:731.733333pt;}
.ybc{bottom:735.973333pt;}
.y143{bottom:737.573333pt;}
.y11e{bottom:742.453333pt;}
.y70{bottom:742.613333pt;}
.ydf{bottom:742.853333pt;}
.y61{bottom:743.573333pt;}
.y9a{bottom:746.373333pt;}
.y38{bottom:747.093333pt;}
.y142{bottom:753.173333pt;}
.y166{bottom:754.693333pt;}
.y60{bottom:759.173333pt;}
.ybb{bottom:760.293333pt;}
.y37{bottom:762.693333pt;}
.y9{bottom:767.093333pt;}
.yde{bottom:767.173333pt;}
.y141{bottom:768.773333pt;}
.y165{bottom:770.373333pt;}
.y11d{bottom:774.053333pt;}
.y5f{bottom:774.773333pt;}
.y99{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y8{bottom:783.093333pt;}
.y140{bottom:784.453333pt;}
.yba{bottom:784.533333pt;}
.y11c{bottom:789.733333pt;}
.y5e{bottom:790.453333pt;}
.ydd{bottom:791.493333pt;}
.y98{bottom:793.653333pt;}
.y35{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y5d{bottom:806.053333pt;}
.y13f{bottom:808.373333pt;}
.yb8{bottom:808.853333pt;}
.y97{bottom:809.253333pt;}
.y164{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.y11b{bottom:821.333333pt;}
.y5c{bottom:821.733333pt;}
.y96{bottom:824.853333pt;}
.y34{bottom:825.653333pt;}
.ydc{bottom:831.413333pt;}
.y163{bottom:833.253333pt;}
.y11a{bottom:836.933333pt;}
.y5b{bottom:837.333333pt;}
.y33{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yb7{bottom:848.773333pt;}
.y162{bottom:848.853333pt;}
.y119{bottom:852.613333pt;}
.y5a{bottom:852.933333pt;}
.ydb{bottom:855.733333pt;}
.y95{bottom:856.533333pt;}
.y32{bottom:856.853333pt;}
.y161{bottom:864.533333pt;}
.y59{bottom:868.613333pt;}
.y94{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.yb6{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.yda{bottom:879.973333pt;}
.y58{bottom:884.213333pt;}
.y93{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.yb4{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y92{bottom:903.440000pt;}
.y2f{bottom:903.840000pt;}
.y57{bottom:908.160000pt;}
.y118{bottom:915.520000pt;}
.y2e{bottom:919.440000pt;}
.yb3{bottom:921.680000pt;}
.yd9{bottom:923.360000pt;}
.y91{bottom:935.040000pt;}
.y160{bottom:943.040000pt;}
.yb1{bottom:946.000000pt;}
.y117{bottom:947.120000pt;}
.y90{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.yd8{bottom:954.320000pt;}
.y15f{bottom:958.720000pt;}
.y116{bottom:962.800000pt;}
.y8f{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.yd7{bottom:966.800000pt;}
.yaf{bottom:970.320000pt;}
.yd6{bottom:977.680000pt;}
.y115{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.yd5{bottom:1001.920000pt;}
.y114{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h24{height:19.970760pt;}
.h13{height:20.960000pt;}
.h18{height:20.986667pt;}
.h17{height:21.040000pt;}
.h1b{height:23.600000pt;}
.h1d{height:23.626667pt;}
.h1c{height:23.680000pt;}
.h1f{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h1a{height:37.032187pt;}
.h1e{height:39.280000pt;}
.h25{height:39.668155pt;}
.h27{height:39.689597pt;}
.h19{height:40.640625pt;}
.h22{height:41.577185pt;}
.h14{height:45.246562pt;}
.h8{height:46.499062pt;}
.h26{height:46.527035pt;}
.h9{height:49.581562pt;}
.h7{height:50.403750pt;}
.h5{height:50.954062pt;}
.h15{height:53.309531pt;}
.ha{height:54.187500pt;}
.h16{height:54.927899pt;}
.h12{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.he{height:73.379062pt;}
.h20{height:75.142500pt;}
.h11{height:79.328437pt;}
.h29{height:79.872366pt;}
.hf{height:80.666875pt;}
.hd{height:87.386875pt;}
.hc{height:98.266875pt;}
.h10{height:107.546875pt;}
.h23{height:122.623916pt;}
.h28{height:200.442114pt;}
.h21{height:404.483254pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w20{width:11.123299pt;}
.w1d{width:11.133598pt;}
.w1e{width:11.617667pt;}
.w1f{width:11.627967pt;}
.w1c{width:11.864852pt;}
.w14{width:21.760000pt;}
.w7{width:21.840000pt;}
.w10{width:27.440000pt;}
.w8{width:28.640000pt;}
.w12{width:30.320000pt;}
.wd{width:30.960000pt;}
.wb{width:31.040000pt;}
.w11{width:34.320000pt;}
.wf{width:38.240000pt;}
.w15{width:38.640000pt;}
.w17{width:38.666667pt;}
.w19{width:38.720000pt;}
.w16{width:38.800000pt;}
.wa{width:38.826667pt;}
.w18{width:38.960000pt;}
.wc{width:39.040000pt;}
.w1a{width:40.640000pt;}
.we{width:40.720000pt;}
.w9{width:51.520000pt;}
.w23{width:55.637086pt;}
.w5{width:109.440000pt;}
.w4{width:124.266667pt;}
.w21{width:133.780310pt;}
.w22{width:145.150792pt;}
.w13{width:201.546667pt;}
.w6{width:250.906667pt;}
.w3{width:312.666667pt;}
.w1b{width:657.752820pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x69{left:5.438057pt;}
.x17{left:6.800000pt;}
.x3c{left:9.393008pt;}
.x66{left:26.953398pt;}
.x65{left:32.401753pt;}
.x64{left:39.322916pt;}
.x68{left:46.244079pt;}
.x67{left:57.614561pt;}
.x1{left:60.480000pt;}
.x39{left:62.713847pt;}
.x63{left:74.084331pt;}
.x1c{left:84.239988pt;}
.x38{left:97.279988pt;}
.x6b{left:98.879988pt;}
.x2c{left:108.799988pt;}
.x2b{left:110.079988pt;}
.x16{left:123.200000pt;}
.x3a{left:146.139529pt;}
.x15{left:164.826655pt;}
.x2{left:171.306655pt;}
.x62{left:202.032039pt;}
.xd{left:205.546655pt;}
.x6a{left:208.107706pt;}
.x11{left:226.826655pt;}
.xb{left:231.386655pt;}
.x13{left:235.786655pt;}
.xf{left:236.906655pt;}
.x1b{left:239.386655pt;}
.x1e{left:250.266655pt;}
.x2d{left:263.386667pt;}
.x3b{left:272.655785pt;}
.x3d{left:284.767819pt;}
.x2e{left:285.866667pt;}
.x3e{left:296.150660pt;}
.x3f{left:308.015511pt;}
.x20{left:312.666667pt;}
.x40{left:319.888601pt;}
.x2f{left:325.146667pt;}
.x7{left:328.586655pt;}
.x41{left:331.753451pt;}
.x21{left:335.146667pt;}
.x42{left:343.618302pt;}
.x8{left:354.346655pt;}
.x43{left:355.495512pt;}
.x4{left:363.226655pt;}
.x22{left:364.426667pt;}
.x44{left:367.360362pt;}
.x30{left:377.386667pt;}
.x45{left:379.233452pt;}
.x46{left:391.098303pt;}
.x9{left:399.786655pt;}
.x6{left:400.986655pt;}
.x47{left:402.975512pt;}
.x5{left:404.346655pt;}
.x48{left:414.345994pt;}
.x23{left:416.666667pt;}
.x49{left:426.206725pt;}
.x18{left:436.506667pt;}
.x4a{left:438.083935pt;}
.x4b{left:449.948785pt;}
.x24{left:456.213333pt;}
.x4c{left:461.825995pt;}
.x4d{left:473.686726pt;}
.x4e{left:485.069566pt;}
.x25{left:487.893333pt;}
.x31{left:495.893333pt;}
.x4f{left:496.934417pt;}
.x50{left:508.811627pt;}
.x51{left:520.672357pt;}
.x26{left:527.573333pt;}
.x52{left:532.541328pt;}
.x12{left:534.053322pt;}
.x32{left:535.253333pt;}
.x53{left:544.414418pt;}
.x10{left:553.013322pt;}
.x54{left:556.279268pt;}
.x27{left:559.173333pt;}
.x19{left:561.413333pt;}
.x55{left:567.662109pt;}
.x33{left:576.613333pt;}
.x56{left:579.526960pt;}
.xe{left:587.013322pt;}
.x57{left:591.400050pt;}
.xc{left:596.053322pt;}
.xa{left:597.013322pt;}
.x28{left:600.533333pt;}
.x58{left:602.770531pt;}
.x59{left:614.141013pt;}
.x34{left:615.493333pt;}
.x14{left:620.053322pt;}
.x5a{left:625.519734pt;}
.x1a{left:627.013322pt;}
.x1d{left:633.013322pt;}
.x5b{left:637.388705pt;}
.x1f{left:640.053322pt;}
.x5c{left:649.261794pt;}
.x35{left:654.853333pt;}
.x5d{left:661.126645pt;}
.x29{left:667.573333pt;}
.x5e{left:672.999735pt;}
.x5f{left:684.868705pt;}
.x36{left:694.213333pt;}
.x60{left:696.733556pt;}
.x2a{left:702.533333pt;}
.x61{left:708.606646pt;}
.x3{left:711.413322pt;}
.x37{left:722.533322pt;}
}




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