
    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_f6293aebd0582a2c8023fb22.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_292d78e938fffcc5903dd913.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_c5d225e3eeb119de25161c3b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_953c9a025580c770a90b5cdf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.771484;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_c1cc3597301e09b2507b370c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_de71f11159b3e06ce9c0c14b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fcd72c034b6401fa274c98c6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_59690a9c90937189ed182388.woff')format("woff");}.ff9{font-family:ff9;line-height:3.684570;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_868112290bde75c7a7ff9b03.woff')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_ad0711927bac97566203e1cc.woff')format("woff");}.ffb{font-family:ffb;line-height:3.684570;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v17{vertical-align:-30.240000px;}
.v14{vertical-align:-23.760000px;}
.vd{vertical-align:-22.320000px;}
.v2{vertical-align:-18.000000px;}
.v9{vertical-align:-15.120000px;}
.v13{vertical-align:-13.680000px;}
.v3{vertical-align:-12.240000px;}
.v1b{vertical-align:-10.800000px;}
.v12{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.160000px;}
.v8{vertical-align:12.240000px;}
.ve{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v18{vertical-align:28.080000px;}
.v19{vertical-align:33.840000px;}
.v16{vertical-align:35.280000px;}
.va{vertical-align:37.440000px;}
.v4{vertical-align:40.320000px;}
.v10{vertical-align:42.480000px;}
.v5{vertical-align:46.080000px;}
.v6{vertical-align:52.560000px;}
.vf{vertical-align:62.640000px;}
.vb{vertical-align:65.520000px;}
.v15{vertical-align:69.120000px;}
.v7{vertical-align:86.400000px;}
.vc{vertical-align:87.840000px;}
.v1a{vertical-align:118.800000px;}
.ls4{letter-spacing:-4.662000px;}
.ls3c{letter-spacing:-0.584400px;}
.ls3f{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.259800px;}
.ls28{letter-spacing:-0.258000px;}
.ls3e{letter-spacing:-0.164400px;}
.ls40{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.053280px;}
.ls26{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.137520px;}
.ls0{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.189360px;}
.ls27{letter-spacing:0.206400px;}
.ls35{letter-spacing:0.209520px;}
.ls2e{letter-spacing:0.257040px;}
.ls9{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.301200px;}
.ls33{letter-spacing:0.319680px;}
.ls2{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.369360px;}
.ls36{letter-spacing:0.389520px;}
.ls23{letter-spacing:0.399600px;}
.ls14{letter-spacing:0.437040px;}
.ls12{letter-spacing:0.493920px;}
.ls1e{letter-spacing:0.684000px;}
.ls29{letter-spacing:0.774000px;}
.ls13{letter-spacing:0.975360px;}
.ls1a{letter-spacing:1.213920px;}
.ls38{letter-spacing:1.532880px;}
.ls20{letter-spacing:1.692000px;}
.ls25{letter-spacing:1.854720px;}
.ls1f{letter-spacing:2.409120px;}
.ls19{letter-spacing:2.460960px;}
.ls3a{letter-spacing:2.473920px;}
.ls3b{letter-spacing:2.711520px;}
.ls18{letter-spacing:2.773440px;}
.ls2b{letter-spacing:3.060000px;}
.ls2c{letter-spacing:3.797280px;}
.ls11{letter-spacing:4.062240px;}
.lsf{letter-spacing:4.174560px;}
.ls10{letter-spacing:4.894560px;}
.ls32{letter-spacing:10.479600px;}
.ls17{letter-spacing:12.540960px;}
.lsb{letter-spacing:14.254560px;}
.ls22{letter-spacing:14.862240px;}
.ls2f{letter-spacing:16.140960px;}
.ls2d{letter-spacing:16.559280px;}
.lse{letter-spacing:17.742240px;}
.ls39{letter-spacing:17.835840px;}
.lsd{letter-spacing:18.855360px;}
.ls1c{letter-spacing:18.973440px;}
.lsc{letter-spacing:22.894560px;}
.ls42{letter-spacing:24.588000px;}
.ls1d{letter-spacing:25.054560px;}
.ls31{letter-spacing:25.572960px;}
.ls37{letter-spacing:27.082800px;}
.ls1b{letter-spacing:28.560960px;}
.ls21{letter-spacing:38.999280px;}
.ls24{letter-spacing:62.639280px;}
.ls30{letter-spacing:71.580960px;}
.ls1{letter-spacing:73.584000px;}
.ls15{letter-spacing:79.122720px;}
.lsa{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-21.035520px;}
.ws5{word-spacing:-18.000000px;}
.ws11{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.146400px;}
.ws1{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.860000px;}
.ws1c{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.392000px;}
.ws13{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.ws1d{word-spacing:-13.140000px;}
.wsb{word-spacing:-13.040400px;}
.ws14{word-spacing:-12.982800px;}
.ws18{word-spacing:-11.880000px;}
.ws8{word-spacing:-9.732960px;}
.ws0{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.711360px;}
.ws15{word-spacing:-9.488400px;}
.wse{word-spacing:-9.187200px;}
.ws1a{word-spacing:-9.000000px;}
.wsf{word-spacing:-8.929200px;}
.ws4{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:37.974240px;}
.ws12{word-spacing:43.791120px;}
.ws16{word-spacing:223.147200px;}
._14{margin-left:-20.356320px;}
._16{margin-left:-10.445760px;}
._10{margin-left:-6.895440px;}
._12{margin-left:-5.825520px;}
._b{margin-left:-3.671040px;}
._2{margin-left:-2.575440px;}
._1{margin-left:-1.072320px;}
._3{width:1.286640px;}
._a{width:3.186000px;}
._0{width:4.482720px;}
._4{width:6.372000px;}
._7{width:7.722000px;}
._6{width:8.802000px;}
._9{width:9.928320px;}
._8{width:11.293680px;}
._5{width:12.304320px;}
._15{width:13.718160px;}
._18{width:16.214400px;}
._13{width:17.279280px;}
._e{width:18.972000px;}
._f{width:20.019600px;}
._19{width:22.318560px;}
._d{width:23.960400px;}
._c{width:25.338240px;}
._11{width:30.501840px;}
._17{width:86.761920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:2.880000px;}
.ybc{bottom:3.060000px;}
.yaa{bottom:3.240000px;}
.ydb{bottom:3.600000px;}
.yc0{bottom:4.500000px;}
.yd2{bottom:4.680000px;}
.y55{bottom:5.040000px;}
.ya7{bottom:5.940000px;}
.y135{bottom:7.380000px;}
.y137{bottom:7.560000px;}
.y9d{bottom:8.100000px;}
.y14f{bottom:8.280000px;}
.y14c{bottom:8.460000px;}
.yed{bottom:9.540000px;}
.yb4{bottom:10.620000px;}
.ya5{bottom:13.320000px;}
.y56{bottom:14.220000px;}
.y149{bottom:14.400000px;}
.y72{bottom:15.165000px;}
.ye8{bottom:15.480000px;}
.yea{bottom:15.660000px;}
.y15e{bottom:15.840000px;}
.y12d{bottom:17.640000px;}
.y9c{bottom:18.180000px;}
.yb2{bottom:18.360000px;}
.y37{bottom:20.160000px;}
.y14e{bottom:21.060000px;}
.y14b{bottom:21.240000px;}
.yec{bottom:22.140000px;}
.ya8{bottom:23.220000px;}
.ya4{bottom:23.400000px;}
.y112{bottom:23.970000px;}
.y10e{bottom:23.985000px;}
.ya6{bottom:24.660000px;}
.yb3{bottom:26.280000px;}
.y54{bottom:26.640000px;}
.yb8{bottom:27.390000px;}
.y11d{bottom:28.440000px;}
.y11f{bottom:29.520000px;}
.y123{bottom:29.700000px;}
.y148{bottom:30.060000px;}
.yb5{bottom:34.020000px;}
.y73{bottom:34.065000px;}
.y111{bottom:36.570000px;}
.y10d{bottom:36.585000px;}
.y36{bottom:37.470000px;}
.y11c{bottom:41.040000px;}
.y11e{bottom:42.120000px;}
.y122{bottom:42.300000px;}
.y70{bottom:42.885000px;}
.y71{bottom:43.245000px;}
.y9e{bottom:45.000000px;}
.y9a{bottom:51.480000px;}
.y35{bottom:54.750000px;}
.y9b{bottom:59.040000px;}
.y97{bottom:62.460000px;}
.y6f{bottom:64.845000px;}
.y98{bottom:68.400000px;}
.y99{bottom:72.180000px;}
.y2{bottom:106.920000px;}
.y1{bottom:122.580000px;}
.y33{bottom:138.060000px;}
.y10b{bottom:139.500000px;}
.y167{bottom:140.400000px;}
.y32{bottom:142.560000px;}
.y15a{bottom:144.180000px;}
.yb0{bottom:144.540000px;}
.y84{bottom:150.300000px;}
.y133{bottom:152.100000px;}
.y31{bottom:153.900000px;}
.y10a{bottom:156.780000px;}
.ye6{bottom:156.960000px;}
.y166{bottom:157.680000px;}
.yd9{bottom:159.660000px;}
.y159{bottom:161.460000px;}
.yaf{bottom:161.820000px;}
.y83{bottom:167.400000px;}
.y109{bottom:174.060000px;}
.ye5{bottom:174.240000px;}
.y165{bottom:174.960000px;}
.yd8{bottom:176.940000px;}
.y158{bottom:178.740000px;}
.yae{bottom:179.100000px;}
.y30{bottom:180.720000px;}
.y82{bottom:184.680000px;}
.y132{bottom:185.940000px;}
.y108{bottom:191.340000px;}
.ye4{bottom:191.520000px;}
.y164{bottom:192.060000px;}
.yd7{bottom:194.220000px;}
.y157{bottom:196.020000px;}
.y2f{bottom:197.820000px;}
.yad{bottom:200.700000px;}
.y81{bottom:201.960000px;}
.y131{bottom:203.220000px;}
.yf2{bottom:206.460000px;}
.ycb{bottom:207.900000px;}
.y107{bottom:208.620000px;}
.ye3{bottom:208.800000px;}
.y163{bottom:209.340000px;}
.y67{bottom:209.880000px;}
.yd6{bottom:211.500000px;}
.y156{bottom:213.300000px;}
.y2e{bottom:215.100000px;}
.y130{bottom:220.500000px;}
.yf1{bottom:223.740000px;}
.yca{bottom:225.000000px;}
.ye2{bottom:225.900000px;}
.y162{bottom:226.620000px;}
.y66{bottom:227.160000px;}
.yd5{bottom:228.780000px;}
.yac{bottom:230.040000px;}
.y155{bottom:230.400000px;}
.y80{bottom:231.120000px;}
.y18b{bottom:231.840000px;}
.y2d{bottom:232.380000px;}
.yf0{bottom:241.020000px;}
.yc9{bottom:242.280000px;}
.y106{bottom:243.000000px;}
.y161{bottom:243.900000px;}
.y65{bottom:244.440000px;}
.yb7{bottom:244.800000px;}
.yd4{bottom:246.060000px;}
.y18a{bottom:247.320000px;}
.y154{bottom:247.680000px;}
.y2c{bottom:249.660000px;}
.yef{bottom:258.150000px;}
.yc8{bottom:259.590000px;}
.y105{bottom:260.310000px;}
.ye1{bottom:260.850000px;}
.ybb{bottom:261.210000px;}
.y189{bottom:263.010000px;}
.y64{bottom:266.070000px;}
.y7f{bottom:266.250000px;}
.y2b{bottom:266.970000px;}
.yc7{bottom:276.870000px;}
.yba{bottom:277.410000px;}
.y104{bottom:277.590000px;}
.y188{bottom:278.490000px;}
.yd3{bottom:281.010000px;}
.ye0{bottom:282.450000px;}
.y153{bottom:282.630000px;}
.y2a{bottom:284.070000px;}
.y12f{bottom:285.690000px;}
.y7e{bottom:287.850000px;}
.yee{bottom:293.250000px;}
.yb9{bottom:293.790000px;}
.y187{bottom:293.970000px;}
.yc6{bottom:294.150000px;}
.y63{bottom:295.410000px;}
.y29{bottom:301.350000px;}
.yd1{bottom:302.610000px;}
.y152{bottom:304.230000px;}
.y186{bottom:309.450000px;}
.yb1{bottom:309.990000px;}
.yc5{bottom:311.430000px;}
.y103{bottom:312.510000px;}
.y62{bottom:312.690000px;}
.yeb{bottom:314.850000px;}
.y28{bottom:318.630000px;}
.y151{bottom:322.770000px;}
.y185{bottom:325.110000px;}
.y160{bottom:326.550000px;}
.yc4{bottom:328.530000px;}
.y120{bottom:328.710000px;}
.y61{bottom:329.790000px;}
.y102{bottom:334.110000px;}
.y12e{bottom:335.370000px;}
.y27{bottom:335.910000px;}
.y184{bottom:340.590000px;}
.yc3{bottom:345.810000px;}
.y15f{bottom:348.150000px;}
.y11b{bottom:350.310000px;}
.y60{bottom:351.570000px;}
.y26{bottom:353.190000px;}
.y183{bottom:356.070000px;}
.y12c{bottom:356.970000px;}
.yc2{bottom:363.090000px;}
.yab{bottom:369.390000px;}
.y25{bottom:370.470000px;}
.y182{bottom:371.550000px;}
.y5f{bottom:380.910000px;}
.y181{bottom:387.030000px;}
.y24{bottom:387.570000px;}
.yc1{bottom:398.010000px;}
.y5e{bottom:398.190000px;}
.ya9{bottom:399.990000px;}
.y180{bottom:402.690000px;}
.y23{bottom:404.850000px;}
.y5d{bottom:415.290000px;}
.ya3{bottom:417.270000px;}
.y17f{bottom:418.170000px;}
.ybf{bottom:419.610000px;}
.y22{bottom:422.130000px;}
.y150{bottom:429.330000px;}
.y17e{bottom:433.650000px;}
.y5c{bottom:437.070000px;}
.y21{bottom:439.410000px;}
.y17d{bottom:449.130000px;}
.y20{bottom:456.690000px;}
.y101{bottom:462.090000px;}
.y17c{bottom:464.790000px;}
.y5b{bottom:466.410000px;}
.ydf{bottom:469.650000px;}
.y1f{bottom:473.970000px;}
.ya2{bottom:477.930000px;}
.y17b{bottom:480.315000px;}
.y5a{bottom:483.735000px;}
.y7d{bottom:484.635000px;}
.y1e{bottom:491.115000px;}
.ya1{bottom:495.255000px;}
.y17a{bottom:495.795000px;}
.yd0{bottom:497.775000px;}
.y59{bottom:500.835000px;}
.y1d{bottom:508.395000px;}
.y179{bottom:511.275000px;}
.ya0{bottom:512.535000px;}
.y58{bottom:518.295000px;}
.y7c{bottom:519.555000px;}
.y11a{bottom:523.695000px;}
.y1c{bottom:525.675000px;}
.y178{bottom:526.935000px;}
.y9f{bottom:529.635000px;}
.y57{bottom:535.755000px;}
.y14d{bottom:535.935000px;}
.y15d{bottom:537.195000px;}
.y119{bottom:540.975000px;}
.y7b{bottom:541.155000px;}
.y177{bottom:542.415000px;}
.y1b{bottom:542.955000px;}
.y96{bottom:543.675000px;}
.y12b{bottom:545.655000px;}
.y53{bottom:549.795000px;}
.y176{bottom:557.895000px;}
.y118{bottom:558.075000px;}
.ye9{bottom:571.035000px;}
.y175{bottom:573.375000px;}
.y117{bottom:575.355000px;}
.y1a{bottom:575.895000px;}
.y174{bottom:589.035000px;}
.y52{bottom:592.275000px;}
.y116{bottom:592.635000px;}
.y173{bottom:604.515000px;}
.y51{bottom:609.375000px;}
.y115{bottom:609.915000px;}
.ybe{bottom:614.595000px;}
.y100{bottom:618.375000px;}
.y172{bottom:619.995000px;}
.y19{bottom:625.575000px;}
.y50{bottom:626.655000px;}
.y114{bottom:627.195000px;}
.y171{bottom:635.475000px;}
.yff{bottom:635.655000px;}
.y14a{bottom:642.495000px;}
.y95{bottom:647.715000px;}
.y170{bottom:651.135000px;}
.yfe{bottom:652.935000px;}
.y4f{bottom:655.815000px;}
.yde{bottom:656.355000px;}
.y18{bottom:659.055000px;}
.y113{bottom:662.115000px;}
.y94{bottom:664.995000px;}
.y16f{bottom:666.615000px;}
.yfd{bottom:670.035000px;}
.y17{bottom:674.535000px;}
.y93{bottom:682.095000px;}
.y110{bottom:683.715000px;}
.yfc{bottom:687.315000px;}
.y16{bottom:690.195000px;}
.ydd{bottom:691.275000px;}
.y4e{bottom:691.815000px;}
.ycf{bottom:692.535000px;}
.y92{bottom:699.555000px;}
.yfb{bottom:704.595000px;}
.y15{bottom:705.705000px;}
.ydc{bottom:712.905000px;}
.y16e{bottom:713.625000px;}
.y91{bottom:717.045000px;}
.y14{bottom:721.185000px;}
.yfa{bottom:721.905000px;}
.yce{bottom:727.485000px;}
.y13{bottom:736.665000px;}
.y90{bottom:737.745000px;}
.yf9{bottom:739.185000px;}
.y4d{bottom:741.885000px;}
.ycd{bottom:749.085000px;}
.y147{bottom:749.265000px;}
.y12{bottom:752.325000px;}
.yf8{bottom:756.465000px;}
.y4c{bottom:759.165000px;}
.y8f{bottom:760.245000px;}
.y16d{bottom:763.665000px;}
.y11{bottom:767.805000px;}
.yf7{bottom:773.565000px;}
.y7a{bottom:776.085000px;}
.y4b{bottom:776.445000px;}
.y8e{bottom:777.525000px;}
.y16c{bottom:780.945000px;}
.y10{bottom:783.285000px;}
.yf6{bottom:790.845000px;}
.y79{bottom:793.365000px;}
.y4a{bottom:793.725000px;}
.y8d{bottom:794.805000px;}
.y146{bottom:795.165000px;}
.y16b{bottom:798.225000px;}
.yf{bottom:798.765000px;}
.y12a{bottom:805.245000px;}
.ybd{bottom:805.605000px;}
.y78{bottom:810.645000px;}
.y49{bottom:811.005000px;}
.y8c{bottom:811.905000px;}
.y145{bottom:812.445000px;}
.ye{bottom:814.425000px;}
.y15c{bottom:814.785000px;}
.y16a{bottom:815.505000px;}
.yf5{bottom:820.185000px;}
.y129{bottom:822.525000px;}
.ye7{bottom:827.385000px;}
.y77{bottom:827.925000px;}
.y48{bottom:828.105000px;}
.y8b{bottom:829.185000px;}
.y144{bottom:829.725000px;}
.yd{bottom:829.905000px;}
.y169{bottom:832.605000px;}
.y15b{bottom:836.385000px;}
.y128{bottom:839.805000px;}
.y76{bottom:845.025000px;}
.yc{bottom:845.385000px;}
.y8a{bottom:846.465000px;}
.y143{bottom:846.825000px;}
.yf4{bottom:855.105000px;}
.y10f{bottom:857.085000px;}
.yb{bottom:860.865000px;}
.y168{bottom:861.945000px;}
.y75{bottom:862.305000px;}
.y47{bottom:862.665000px;}
.y89{bottom:863.745000px;}
.y142{bottom:864.105000px;}
.y127{bottom:874.365000px;}
.ya{bottom:876.525000px;}
.yf3{bottom:876.705000px;}
.y46{bottom:879.945000px;}
.y88{bottom:881.025000px;}
.y141{bottom:881.385000px;}
.y126{bottom:891.465000px;}
.y74{bottom:891.645000px;}
.y9{bottom:892.005000px;}
.y45{bottom:897.225000px;}
.y140{bottom:898.665000px;}
.yda{bottom:899.925000px;}
.y87{bottom:902.625000px;}
.y8{bottom:907.485000px;}
.y125{bottom:908.745000px;}
.y10c{bottom:913.605000px;}
.y44{bottom:914.505000px;}
.y13f{bottom:915.945000px;}
.y7{bottom:922.965000px;}
.y6e{bottom:923.685000px;}
.y43{bottom:931.650000px;}
.y86{bottom:931.830000px;}
.y13e{bottom:933.270000px;}
.y124{bottom:943.710000px;}
.ycc{bottom:944.250000px;}
.y42{bottom:948.930000px;}
.y13d{bottom:950.370000px;}
.y121{bottom:965.310000px;}
.y41{bottom:966.210000px;}
.y13c{bottom:967.650000px;}
.y85{bottom:967.830000px;}
.y13b{bottom:982.410000px;}
.y40{bottom:983.490000px;}
.y6{bottom:988.710000px;}
.y3f{bottom:1000.770000px;}
.y6d{bottom:1005.990000px;}
.y13a{bottom:1007.970000px;}
.y4{bottom:1017.510000px;}
.y3e{bottom:1017.870000px;}
.y6c{bottom:1023.270000px;}
.y5{bottom:1024.350000px;}
.y139{bottom:1033.530000px;}
.y3d{bottom:1035.150000px;}
.y6b{bottom:1040.370000px;}
.y3c{bottom:1052.430000px;}
.y6a{bottom:1057.650000px;}
.y138{bottom:1058.910000px;}
.y3{bottom:1060.530000px;}
.y3b{bottom:1069.710000px;}
.y69{bottom:1074.930000px;}
.y136{bottom:1084.470000px;}
.y3a{bottom:1086.990000px;}
.y68{bottom:1092.210000px;}
.y39{bottom:1104.270000px;}
.y134{bottom:1110.030000px;}
.y38{bottom:1121.370000px;}
.y34{bottom:1122.810000px;}
.h25{height:15.480000px;}
.h26{height:15.696000px;}
.h21{height:17.280000px;}
.h41{height:18.540000px;}
.h39{height:24.660000px;}
.h3c{height:24.840000px;}
.h7{height:25.136719px;}
.h5{height:33.683203px;}
.h2{height:37.705078px;}
.h8{height:38.100586px;}
.he{height:39.240000px;}
.h17{height:39.313477px;}
.hb{height:41.726953px;}
.h45{height:42.164648px;}
.h3d{height:42.660000px;}
.h3a{height:43.136719px;}
.hd{height:43.506914px;}
.h9{height:44.507812px;}
.h18{height:45.374414px;}
.h22{height:46.620000px;}
.h6{height:48.027656px;}
.h11{height:49.255313px;}
.h4{height:50.273438px;}
.h46{height:50.800781px;}
.ha{height:52.417969px;}
.h1f{height:57.420000px;}
.h3{height:59.436914px;}
.h24{height:64.476000px;}
.hc{height:68.796000px;}
.h12{height:79.056000px;}
.h1c{height:96.925078px;}
.h19{height:100.800000px;}
.h3f{height:106.560000px;}
.h40{height:106.596000px;}
.h3e{height:106.776000px;}
.h23{height:114.908203px;}
.h3b{height:121.122670px;}
.hf{height:127.165078px;}
.h35{height:127.980000px;}
.h1d{height:134.042422px;}
.h34{height:153.030000px;}
.h27{height:157.350000px;}
.h1b{height:157.405078px;}
.h1e{height:167.485078px;}
.h14{height:169.645078px;}
.h16{height:169.825078px;}
.h37{height:170.100000px;}
.h36{height:170.130000px;}
.h15{height:173.245078px;}
.h2f{height:183.450000px;}
.h2d{height:183.810000px;}
.h2e{height:187.020000px;}
.h30{height:187.200000px;}
.h38{height:188.670000px;}
.h44{height:189.030000px;}
.h28{height:191.010000px;}
.h2a{height:191.160000px;}
.h2c{height:191.520000px;}
.h29{height:194.970000px;}
.h2b{height:195.150000px;}
.h1a{height:207.805078px;}
.h10{height:213.565078px;}
.h13{height:215.005078px;}
.h20{height:245.965078px;}
.h42{height:247.350000px;}
.h32{height:256.170000px;}
.h31{height:256.350000px;}
.h43{height:256.710000px;}
.h33{height:258.690000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:55.116000px;}
.w13{width:105.660000px;}
.w8{width:106.200000px;}
.w9{width:106.380000px;}
.w7{width:106.416000px;}
.w17{width:108.216000px;}
.w15{width:113.256000px;}
.w16{width:116.460000px;}
.w14{width:159.510000px;}
.w11{width:225.570000px;}
.w12{width:225.750000px;}
.w1c{width:226.470000px;}
.wf{width:226.650000px;}
.w10{width:226.830000px;}
.w19{width:284.610000px;}
.wd{width:338.070000px;}
.we{width:338.115000px;}
.w1a{width:339.690000px;}
.w1b{width:339.915000px;}
.wb{width:340.050000px;}
.wc{width:340.275000px;}
.w18{width:395.715000px;}
.w5{width:455.295000px;}
.wa{width:680.325000px;}
.w4{width:690.765000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:10.800000px;}
.x16{left:29.340000px;}
.xc{left:32.040000px;}
.x3d{left:37.260000px;}
.x36{left:40.860000px;}
.x5c{left:42.300000px;}
.x39{left:45.000000px;}
.x30{left:46.440000px;}
.x2e{left:48.996000px;}
.x32{left:50.625000px;}
.x3b{left:51.876000px;}
.x33{left:53.145000px;}
.x3c{left:55.260000px;}
.x35{left:56.700000px;}
.x60{left:58.185000px;}
.x18{left:59.220000px;}
.x61{left:61.245000px;}
.x17{left:62.280000px;}
.x2a{left:69.480000px;}
.x2d{left:73.800000px;}
.x19{left:79.200000px;}
.x6a{left:82.434000px;}
.x27{left:87.660000px;}
.x50{left:89.454000px;}
.x52{left:91.440000px;}
.x2b{left:99.000000px;}
.xb{left:105.336000px;}
.x8{left:106.415987px;}
.x64{left:111.960000px;}
.x68{left:119.700000px;}
.xf{left:120.825000px;}
.x10{left:124.425000px;}
.x2{left:128.555987px;}
.x1{left:131.975987px;}
.x42{left:133.770000px;}
.xa{left:136.475987px;}
.x41{left:138.090000px;}
.x3f{left:141.834000px;}
.x5b{left:145.116000px;}
.x45{left:147.774000px;}
.x7{left:148.895987px;}
.x4e{left:151.914000px;}
.x3e{left:153.714000px;}
.x22{left:160.409987px;}
.x62{left:165.954000px;}
.x1c{left:167.265000px;}
.x28{left:169.605000px;}
.x23{left:174.285000px;}
.x11{left:176.805000px;}
.x2f{left:180.210000px;}
.x1d{left:181.665000px;}
.x6{left:186.329987px;}
.x1a{left:187.605000px;}
.xe{left:191.370000px;}
.x4b{left:194.969987px;}
.x57{left:209.565000px;}
.x4f{left:211.179000px;}
.x46{left:222.869987px;}
.x49{left:228.269987px;}
.x48{left:230.069987px;}
.x12{left:231.705000px;}
.x25{left:238.545000px;}
.x13{left:242.865000px;}
.x29{left:245.745000px;}
.x3{left:246.989987px;}
.x56{left:249.329987px;}
.x47{left:251.669987px;}
.x43{left:255.449987px;}
.x4d{left:262.289987px;}
.x58{left:264.089987px;}
.x24{left:267.705000px;}
.x69{left:274.709987px;}
.x5a{left:278.669987px;}
.x31{left:286.410000px;}
.x14{left:292.185000px;}
.x59{left:296.534987px;}
.x67{left:298.305000px;}
.x1b{left:301.545000px;}
.x66{left:303.345000px;}
.x26{left:305.535000px;}
.x2c{left:327.674987px;}
.x21{left:328.754987px;}
.x54{left:331.995000px;}
.x51{left:333.075000px;}
.x9{left:343.694987px;}
.x1f{left:378.974987px;}
.x34{left:392.835000px;}
.x5d{left:410.295000px;}
.x65{left:425.229000px;}
.x44{left:444.495000px;}
.x40{left:446.475000px;}
.x4{left:464.114973px;}
.x5{left:470.054987px;}
.x4a{left:485.889000px;}
.x4c{left:495.969000px;}
.x37{left:499.245000px;}
.x63{left:502.125000px;}
.x5e{left:523.545000px;}
.x55{left:557.745000px;}
.x53{left:559.905000px;}
.x20{left:578.804987px;}
.x38{left:605.445000px;}
.x1e{left:619.484987px;}
.x5f{left:640.005000px;}
.x15{left:646.665000px;}
.x3a{left:711.870000px;}
@media print{
.v17{vertical-align:-26.880000pt;}
.v14{vertical-align:-21.120000pt;}
.vd{vertical-align:-19.840000pt;}
.v2{vertical-align:-16.000000pt;}
.v9{vertical-align:-13.440000pt;}
.v13{vertical-align:-12.160000pt;}
.v3{vertical-align:-10.880000pt;}
.v1b{vertical-align:-9.600000pt;}
.v12{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:1.920000pt;}
.v8{vertical-align:10.880000pt;}
.ve{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v18{vertical-align:24.960000pt;}
.v19{vertical-align:30.080000pt;}
.v16{vertical-align:31.360000pt;}
.va{vertical-align:33.280000pt;}
.v4{vertical-align:35.840000pt;}
.v10{vertical-align:37.760000pt;}
.v5{vertical-align:40.960000pt;}
.v6{vertical-align:46.720000pt;}
.vf{vertical-align:55.680000pt;}
.vb{vertical-align:58.240000pt;}
.v15{vertical-align:61.440000pt;}
.v7{vertical-align:76.800000pt;}
.vc{vertical-align:78.080000pt;}
.v1a{vertical-align:105.600000pt;}
.ls4{letter-spacing:-4.144000pt;}
.ls3c{letter-spacing:-0.519467pt;}
.ls3f{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.230933pt;}
.ls28{letter-spacing:-0.229333pt;}
.ls3e{letter-spacing:-0.146133pt;}
.ls40{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls26{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.122240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.168320pt;}
.ls27{letter-spacing:0.183467pt;}
.ls35{letter-spacing:0.186240pt;}
.ls2e{letter-spacing:0.228480pt;}
.ls9{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.267733pt;}
.ls33{letter-spacing:0.284160pt;}
.ls2{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.328320pt;}
.ls36{letter-spacing:0.346240pt;}
.ls23{letter-spacing:0.355200pt;}
.ls14{letter-spacing:0.388480pt;}
.ls12{letter-spacing:0.439040pt;}
.ls1e{letter-spacing:0.608000pt;}
.ls29{letter-spacing:0.688000pt;}
.ls13{letter-spacing:0.866987pt;}
.ls1a{letter-spacing:1.079040pt;}
.ls38{letter-spacing:1.362560pt;}
.ls20{letter-spacing:1.504000pt;}
.ls25{letter-spacing:1.648640pt;}
.ls1f{letter-spacing:2.141440pt;}
.ls19{letter-spacing:2.187520pt;}
.ls3a{letter-spacing:2.199040pt;}
.ls3b{letter-spacing:2.410240pt;}
.ls18{letter-spacing:2.465280pt;}
.ls2b{letter-spacing:2.720000pt;}
.ls2c{letter-spacing:3.375360pt;}
.ls11{letter-spacing:3.610880pt;}
.lsf{letter-spacing:3.710720pt;}
.ls10{letter-spacing:4.350720pt;}
.ls32{letter-spacing:9.315200pt;}
.ls17{letter-spacing:11.147520pt;}
.lsb{letter-spacing:12.670720pt;}
.ls22{letter-spacing:13.210880pt;}
.ls2f{letter-spacing:14.347520pt;}
.ls2d{letter-spacing:14.719360pt;}
.lse{letter-spacing:15.770880pt;}
.ls39{letter-spacing:15.854080pt;}
.lsd{letter-spacing:16.760320pt;}
.ls1c{letter-spacing:16.865280pt;}
.lsc{letter-spacing:20.350720pt;}
.ls42{letter-spacing:21.856000pt;}
.ls1d{letter-spacing:22.270720pt;}
.ls31{letter-spacing:22.731520pt;}
.ls37{letter-spacing:24.073600pt;}
.ls1b{letter-spacing:25.387520pt;}
.ls21{letter-spacing:34.666027pt;}
.ls24{letter-spacing:55.679360pt;}
.ls30{letter-spacing:63.627520pt;}
.ls1{letter-spacing:65.408000pt;}
.ls15{letter-spacing:70.331307pt;}
.lsa{letter-spacing:72.272640pt;}
.ws10{word-spacing:-18.698240pt;}
.ws5{word-spacing:-16.000000pt;}
.ws11{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.463467pt;}
.ws1{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws1c{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.904000pt;}
.ws13{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws1d{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.591467pt;}
.ws14{word-spacing:-11.540267pt;}
.ws18{word-spacing:-10.560000pt;}
.ws8{word-spacing:-8.651520pt;}
.ws0{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.632320pt;}
.ws15{word-spacing:-8.434133pt;}
.wse{word-spacing:-8.166400pt;}
.ws1a{word-spacing:-8.000000pt;}
.wsf{word-spacing:-7.937067pt;}
.ws4{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:33.754880pt;}
.ws12{word-spacing:38.925440pt;}
.ws16{word-spacing:198.353067pt;}
._14{margin-left:-18.094507pt;}
._16{margin-left:-9.285120pt;}
._10{margin-left:-6.129280pt;}
._12{margin-left:-5.178240pt;}
._b{margin-left:-3.263147pt;}
._2{margin-left:-2.289280pt;}
._1{margin-left:-0.953173pt;}
._3{width:1.143680pt;}
._a{width:2.832000pt;}
._0{width:3.984640pt;}
._4{width:5.664000pt;}
._7{width:6.864000pt;}
._6{width:7.824000pt;}
._9{width:8.825173pt;}
._8{width:10.038827pt;}
._5{width:10.937173pt;}
._15{width:12.193920pt;}
._18{width:14.412800pt;}
._13{width:15.359360pt;}
._e{width:16.864000pt;}
._f{width:17.795200pt;}
._19{width:19.838720pt;}
._d{width:21.298133pt;}
._c{width:22.522880pt;}
._11{width:27.112747pt;}
._17{width:77.121707pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:2.560000pt;}
.ybc{bottom:2.720000pt;}
.yaa{bottom:2.880000pt;}
.ydb{bottom:3.200000pt;}
.yc0{bottom:4.000000pt;}
.yd2{bottom:4.160000pt;}
.y55{bottom:4.480000pt;}
.ya7{bottom:5.280000pt;}
.y135{bottom:6.560000pt;}
.y137{bottom:6.720000pt;}
.y9d{bottom:7.200000pt;}
.y14f{bottom:7.360000pt;}
.y14c{bottom:7.520000pt;}
.yed{bottom:8.480000pt;}
.yb4{bottom:9.440000pt;}
.ya5{bottom:11.840000pt;}
.y56{bottom:12.640000pt;}
.y149{bottom:12.800000pt;}
.y72{bottom:13.480000pt;}
.ye8{bottom:13.760000pt;}
.yea{bottom:13.920000pt;}
.y15e{bottom:14.080000pt;}
.y12d{bottom:15.680000pt;}
.y9c{bottom:16.160000pt;}
.yb2{bottom:16.320000pt;}
.y37{bottom:17.920000pt;}
.y14e{bottom:18.720000pt;}
.y14b{bottom:18.880000pt;}
.yec{bottom:19.680000pt;}
.ya8{bottom:20.640000pt;}
.ya4{bottom:20.800000pt;}
.y112{bottom:21.306667pt;}
.y10e{bottom:21.320000pt;}
.ya6{bottom:21.920000pt;}
.yb3{bottom:23.360000pt;}
.y54{bottom:23.680000pt;}
.yb8{bottom:24.346667pt;}
.y11d{bottom:25.280000pt;}
.y11f{bottom:26.240000pt;}
.y123{bottom:26.400000pt;}
.y148{bottom:26.720000pt;}
.yb5{bottom:30.240000pt;}
.y73{bottom:30.280000pt;}
.y111{bottom:32.506667pt;}
.y10d{bottom:32.520000pt;}
.y36{bottom:33.306667pt;}
.y11c{bottom:36.480000pt;}
.y11e{bottom:37.440000pt;}
.y122{bottom:37.600000pt;}
.y70{bottom:38.120000pt;}
.y71{bottom:38.440000pt;}
.y9e{bottom:40.000000pt;}
.y9a{bottom:45.760000pt;}
.y35{bottom:48.666667pt;}
.y9b{bottom:52.480000pt;}
.y97{bottom:55.520000pt;}
.y6f{bottom:57.640000pt;}
.y98{bottom:60.800000pt;}
.y99{bottom:64.160000pt;}
.y2{bottom:95.040000pt;}
.y1{bottom:108.960000pt;}
.y33{bottom:122.720000pt;}
.y10b{bottom:124.000000pt;}
.y167{bottom:124.800000pt;}
.y32{bottom:126.720000pt;}
.y15a{bottom:128.160000pt;}
.yb0{bottom:128.480000pt;}
.y84{bottom:133.600000pt;}
.y133{bottom:135.200000pt;}
.y31{bottom:136.800000pt;}
.y10a{bottom:139.360000pt;}
.ye6{bottom:139.520000pt;}
.y166{bottom:140.160000pt;}
.yd9{bottom:141.920000pt;}
.y159{bottom:143.520000pt;}
.yaf{bottom:143.840000pt;}
.y83{bottom:148.800000pt;}
.y109{bottom:154.720000pt;}
.ye5{bottom:154.880000pt;}
.y165{bottom:155.520000pt;}
.yd8{bottom:157.280000pt;}
.y158{bottom:158.880000pt;}
.yae{bottom:159.200000pt;}
.y30{bottom:160.640000pt;}
.y82{bottom:164.160000pt;}
.y132{bottom:165.280000pt;}
.y108{bottom:170.080000pt;}
.ye4{bottom:170.240000pt;}
.y164{bottom:170.720000pt;}
.yd7{bottom:172.640000pt;}
.y157{bottom:174.240000pt;}
.y2f{bottom:175.840000pt;}
.yad{bottom:178.400000pt;}
.y81{bottom:179.520000pt;}
.y131{bottom:180.640000pt;}
.yf2{bottom:183.520000pt;}
.ycb{bottom:184.800000pt;}
.y107{bottom:185.440000pt;}
.ye3{bottom:185.600000pt;}
.y163{bottom:186.080000pt;}
.y67{bottom:186.560000pt;}
.yd6{bottom:188.000000pt;}
.y156{bottom:189.600000pt;}
.y2e{bottom:191.200000pt;}
.y130{bottom:196.000000pt;}
.yf1{bottom:198.880000pt;}
.yca{bottom:200.000000pt;}
.ye2{bottom:200.800000pt;}
.y162{bottom:201.440000pt;}
.y66{bottom:201.920000pt;}
.yd5{bottom:203.360000pt;}
.yac{bottom:204.480000pt;}
.y155{bottom:204.800000pt;}
.y80{bottom:205.440000pt;}
.y18b{bottom:206.080000pt;}
.y2d{bottom:206.560000pt;}
.yf0{bottom:214.240000pt;}
.yc9{bottom:215.360000pt;}
.y106{bottom:216.000000pt;}
.y161{bottom:216.800000pt;}
.y65{bottom:217.280000pt;}
.yb7{bottom:217.600000pt;}
.yd4{bottom:218.720000pt;}
.y18a{bottom:219.840000pt;}
.y154{bottom:220.160000pt;}
.y2c{bottom:221.920000pt;}
.yef{bottom:229.466667pt;}
.yc8{bottom:230.746667pt;}
.y105{bottom:231.386667pt;}
.ye1{bottom:231.866667pt;}
.ybb{bottom:232.186667pt;}
.y189{bottom:233.786667pt;}
.y64{bottom:236.506667pt;}
.y7f{bottom:236.666667pt;}
.y2b{bottom:237.306667pt;}
.yc7{bottom:246.106667pt;}
.yba{bottom:246.586667pt;}
.y104{bottom:246.746667pt;}
.y188{bottom:247.546667pt;}
.yd3{bottom:249.786667pt;}
.ye0{bottom:251.066667pt;}
.y153{bottom:251.226667pt;}
.y2a{bottom:252.506667pt;}
.y12f{bottom:253.946667pt;}
.y7e{bottom:255.866667pt;}
.yee{bottom:260.666667pt;}
.yb9{bottom:261.146667pt;}
.y187{bottom:261.306667pt;}
.yc6{bottom:261.466667pt;}
.y63{bottom:262.586667pt;}
.y29{bottom:267.866667pt;}
.yd1{bottom:268.986667pt;}
.y152{bottom:270.426667pt;}
.y186{bottom:275.066667pt;}
.yb1{bottom:275.546667pt;}
.yc5{bottom:276.826667pt;}
.y103{bottom:277.786667pt;}
.y62{bottom:277.946667pt;}
.yeb{bottom:279.866667pt;}
.y28{bottom:283.226667pt;}
.y151{bottom:286.906667pt;}
.y185{bottom:288.986667pt;}
.y160{bottom:290.266667pt;}
.yc4{bottom:292.026667pt;}
.y120{bottom:292.186667pt;}
.y61{bottom:293.146667pt;}
.y102{bottom:296.986667pt;}
.y12e{bottom:298.106667pt;}
.y27{bottom:298.586667pt;}
.y184{bottom:302.746667pt;}
.yc3{bottom:307.386667pt;}
.y15f{bottom:309.466667pt;}
.y11b{bottom:311.386667pt;}
.y60{bottom:312.506667pt;}
.y26{bottom:313.946667pt;}
.y183{bottom:316.506667pt;}
.y12c{bottom:317.306667pt;}
.yc2{bottom:322.746667pt;}
.yab{bottom:328.346667pt;}
.y25{bottom:329.306667pt;}
.y182{bottom:330.266667pt;}
.y5f{bottom:338.586667pt;}
.y181{bottom:344.026667pt;}
.y24{bottom:344.506667pt;}
.yc1{bottom:353.786667pt;}
.y5e{bottom:353.946667pt;}
.ya9{bottom:355.546667pt;}
.y180{bottom:357.946667pt;}
.y23{bottom:359.866667pt;}
.y5d{bottom:369.146667pt;}
.ya3{bottom:370.906667pt;}
.y17f{bottom:371.706667pt;}
.ybf{bottom:372.986667pt;}
.y22{bottom:375.226667pt;}
.y150{bottom:381.626667pt;}
.y17e{bottom:385.466667pt;}
.y5c{bottom:388.506667pt;}
.y21{bottom:390.586667pt;}
.y17d{bottom:399.226667pt;}
.y20{bottom:405.946667pt;}
.y101{bottom:410.746667pt;}
.y17c{bottom:413.146667pt;}
.y5b{bottom:414.586667pt;}
.ydf{bottom:417.466667pt;}
.y1f{bottom:421.306667pt;}
.ya2{bottom:424.826667pt;}
.y17b{bottom:426.946667pt;}
.y5a{bottom:429.986667pt;}
.y7d{bottom:430.786667pt;}
.y1e{bottom:436.546667pt;}
.ya1{bottom:440.226667pt;}
.y17a{bottom:440.706667pt;}
.yd0{bottom:442.466667pt;}
.y59{bottom:445.186667pt;}
.y1d{bottom:451.906667pt;}
.y179{bottom:454.466667pt;}
.ya0{bottom:455.586667pt;}
.y58{bottom:460.706667pt;}
.y7c{bottom:461.826667pt;}
.y11a{bottom:465.506667pt;}
.y1c{bottom:467.266667pt;}
.y178{bottom:468.386667pt;}
.y9f{bottom:470.786667pt;}
.y57{bottom:476.226667pt;}
.y14d{bottom:476.386667pt;}
.y15d{bottom:477.506667pt;}
.y119{bottom:480.866667pt;}
.y7b{bottom:481.026667pt;}
.y177{bottom:482.146667pt;}
.y1b{bottom:482.626667pt;}
.y96{bottom:483.266667pt;}
.y12b{bottom:485.026667pt;}
.y53{bottom:488.706667pt;}
.y176{bottom:495.906667pt;}
.y118{bottom:496.066667pt;}
.ye9{bottom:507.586667pt;}
.y175{bottom:509.666667pt;}
.y117{bottom:511.426667pt;}
.y1a{bottom:511.906667pt;}
.y174{bottom:523.586667pt;}
.y52{bottom:526.466667pt;}
.y116{bottom:526.786667pt;}
.y173{bottom:537.346667pt;}
.y51{bottom:541.666667pt;}
.y115{bottom:542.146667pt;}
.ybe{bottom:546.306667pt;}
.y100{bottom:549.666667pt;}
.y172{bottom:551.106667pt;}
.y19{bottom:556.066667pt;}
.y50{bottom:557.026667pt;}
.y114{bottom:557.506667pt;}
.y171{bottom:564.866667pt;}
.yff{bottom:565.026667pt;}
.y14a{bottom:571.106667pt;}
.y95{bottom:575.746667pt;}
.y170{bottom:578.786667pt;}
.yfe{bottom:580.386667pt;}
.y4f{bottom:582.946667pt;}
.yde{bottom:583.426667pt;}
.y18{bottom:585.826667pt;}
.y113{bottom:588.546667pt;}
.y94{bottom:591.106667pt;}
.y16f{bottom:592.546667pt;}
.yfd{bottom:595.586667pt;}
.y17{bottom:599.586667pt;}
.y93{bottom:606.306667pt;}
.y110{bottom:607.746667pt;}
.yfc{bottom:610.946667pt;}
.y16{bottom:613.506667pt;}
.ydd{bottom:614.466667pt;}
.y4e{bottom:614.946667pt;}
.ycf{bottom:615.586667pt;}
.y92{bottom:621.826667pt;}
.yfb{bottom:626.306667pt;}
.y15{bottom:627.293333pt;}
.ydc{bottom:633.693333pt;}
.y16e{bottom:634.333333pt;}
.y91{bottom:637.373333pt;}
.y14{bottom:641.053333pt;}
.yfa{bottom:641.693333pt;}
.yce{bottom:646.653333pt;}
.y13{bottom:654.813333pt;}
.y90{bottom:655.773333pt;}
.yf9{bottom:657.053333pt;}
.y4d{bottom:659.453333pt;}
.ycd{bottom:665.853333pt;}
.y147{bottom:666.013333pt;}
.y12{bottom:668.733333pt;}
.yf8{bottom:672.413333pt;}
.y4c{bottom:674.813333pt;}
.y8f{bottom:675.773333pt;}
.y16d{bottom:678.813333pt;}
.y11{bottom:682.493333pt;}
.yf7{bottom:687.613333pt;}
.y7a{bottom:689.853333pt;}
.y4b{bottom:690.173333pt;}
.y8e{bottom:691.133333pt;}
.y16c{bottom:694.173333pt;}
.y10{bottom:696.253333pt;}
.yf6{bottom:702.973333pt;}
.y79{bottom:705.213333pt;}
.y4a{bottom:705.533333pt;}
.y8d{bottom:706.493333pt;}
.y146{bottom:706.813333pt;}
.y16b{bottom:709.533333pt;}
.yf{bottom:710.013333pt;}
.y12a{bottom:715.773333pt;}
.ybd{bottom:716.093333pt;}
.y78{bottom:720.573333pt;}
.y49{bottom:720.893333pt;}
.y8c{bottom:721.693333pt;}
.y145{bottom:722.173333pt;}
.ye{bottom:723.933333pt;}
.y15c{bottom:724.253333pt;}
.y16a{bottom:724.893333pt;}
.yf5{bottom:729.053333pt;}
.y129{bottom:731.133333pt;}
.ye7{bottom:735.453333pt;}
.y77{bottom:735.933333pt;}
.y48{bottom:736.093333pt;}
.y8b{bottom:737.053333pt;}
.y144{bottom:737.533333pt;}
.yd{bottom:737.693333pt;}
.y169{bottom:740.093333pt;}
.y15b{bottom:743.453333pt;}
.y128{bottom:746.493333pt;}
.y76{bottom:751.133333pt;}
.yc{bottom:751.453333pt;}
.y8a{bottom:752.413333pt;}
.y143{bottom:752.733333pt;}
.yf4{bottom:760.093333pt;}
.y10f{bottom:761.853333pt;}
.yb{bottom:765.213333pt;}
.y168{bottom:766.173333pt;}
.y75{bottom:766.493333pt;}
.y47{bottom:766.813333pt;}
.y89{bottom:767.773333pt;}
.y142{bottom:768.093333pt;}
.y127{bottom:777.213333pt;}
.ya{bottom:779.133333pt;}
.yf3{bottom:779.293333pt;}
.y46{bottom:782.173333pt;}
.y88{bottom:783.133333pt;}
.y141{bottom:783.453333pt;}
.y126{bottom:792.413333pt;}
.y74{bottom:792.573333pt;}
.y9{bottom:792.893333pt;}
.y45{bottom:797.533333pt;}
.y140{bottom:798.813333pt;}
.yda{bottom:799.933333pt;}
.y87{bottom:802.333333pt;}
.y8{bottom:806.653333pt;}
.y125{bottom:807.773333pt;}
.y10c{bottom:812.093333pt;}
.y44{bottom:812.893333pt;}
.y13f{bottom:814.173333pt;}
.y7{bottom:820.413333pt;}
.y6e{bottom:821.053333pt;}
.y43{bottom:828.133333pt;}
.y86{bottom:828.293333pt;}
.y13e{bottom:829.573333pt;}
.y124{bottom:838.853333pt;}
.ycc{bottom:839.333333pt;}
.y42{bottom:843.493333pt;}
.y13d{bottom:844.773333pt;}
.y121{bottom:858.053333pt;}
.y41{bottom:858.853333pt;}
.y13c{bottom:860.133333pt;}
.y85{bottom:860.293333pt;}
.y13b{bottom:873.253333pt;}
.y40{bottom:874.213333pt;}
.y6{bottom:878.853333pt;}
.y3f{bottom:889.573333pt;}
.y6d{bottom:894.213333pt;}
.y13a{bottom:895.973333pt;}
.y4{bottom:904.453333pt;}
.y3e{bottom:904.773333pt;}
.y6c{bottom:909.573333pt;}
.y5{bottom:910.533333pt;}
.y139{bottom:918.693333pt;}
.y3d{bottom:920.133333pt;}
.y6b{bottom:924.773333pt;}
.y3c{bottom:935.493333pt;}
.y6a{bottom:940.133333pt;}
.y138{bottom:941.253333pt;}
.y3{bottom:942.693333pt;}
.y3b{bottom:950.853333pt;}
.y69{bottom:955.493333pt;}
.y136{bottom:963.973333pt;}
.y3a{bottom:966.213333pt;}
.y68{bottom:970.853333pt;}
.y39{bottom:981.573333pt;}
.y134{bottom:986.693333pt;}
.y38{bottom:996.773333pt;}
.y34{bottom:998.053333pt;}
.h25{height:13.760000pt;}
.h26{height:13.952000pt;}
.h21{height:15.360000pt;}
.h41{height:16.480000pt;}
.h39{height:21.920000pt;}
.h3c{height:22.080000pt;}
.h7{height:22.343750pt;}
.h5{height:29.940625pt;}
.h2{height:33.515625pt;}
.h8{height:33.867188pt;}
.he{height:34.880000pt;}
.h17{height:34.945312pt;}
.hb{height:37.090625pt;}
.h45{height:37.479688pt;}
.h3d{height:37.920000pt;}
.h3a{height:38.343750pt;}
.hd{height:38.672812pt;}
.h9{height:39.562500pt;}
.h18{height:40.332812pt;}
.h22{height:41.440000pt;}
.h6{height:42.691250pt;}
.h11{height:43.782500pt;}
.h4{height:44.687500pt;}
.h46{height:45.156250pt;}
.ha{height:46.593750pt;}
.h1f{height:51.040000pt;}
.h3{height:52.832812pt;}
.h24{height:57.312000pt;}
.hc{height:61.152000pt;}
.h12{height:70.272000pt;}
.h1c{height:86.155625pt;}
.h19{height:89.600000pt;}
.h3f{height:94.720000pt;}
.h40{height:94.752000pt;}
.h3e{height:94.912000pt;}
.h23{height:102.140625pt;}
.h3b{height:107.664596pt;}
.hf{height:113.035625pt;}
.h35{height:113.760000pt;}
.h1d{height:119.148819pt;}
.h34{height:136.026667pt;}
.h27{height:139.866667pt;}
.h1b{height:139.915625pt;}
.h1e{height:148.875625pt;}
.h14{height:150.795625pt;}
.h16{height:150.955625pt;}
.h37{height:151.200000pt;}
.h36{height:151.226667pt;}
.h15{height:153.995625pt;}
.h2f{height:163.066667pt;}
.h2d{height:163.386667pt;}
.h2e{height:166.240000pt;}
.h30{height:166.400000pt;}
.h38{height:167.706667pt;}
.h44{height:168.026667pt;}
.h28{height:169.786667pt;}
.h2a{height:169.920000pt;}
.h2c{height:170.240000pt;}
.h29{height:173.306667pt;}
.h2b{height:173.466667pt;}
.h1a{height:184.715625pt;}
.h10{height:189.835625pt;}
.h13{height:191.115625pt;}
.h20{height:218.635625pt;}
.h42{height:219.866667pt;}
.h32{height:227.706667pt;}
.h31{height:227.866667pt;}
.h43{height:228.186667pt;}
.h33{height:229.946667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:48.992000pt;}
.w13{width:93.920000pt;}
.w8{width:94.400000pt;}
.w9{width:94.560000pt;}
.w7{width:94.592000pt;}
.w17{width:96.192000pt;}
.w15{width:100.672000pt;}
.w16{width:103.520000pt;}
.w14{width:141.786667pt;}
.w11{width:200.506667pt;}
.w12{width:200.666667pt;}
.w1c{width:201.306667pt;}
.wf{width:201.466667pt;}
.w10{width:201.626667pt;}
.w19{width:252.986667pt;}
.wd{width:300.506667pt;}
.we{width:300.546667pt;}
.w1a{width:301.946667pt;}
.w1b{width:302.146667pt;}
.wb{width:302.266667pt;}
.wc{width:302.466667pt;}
.w18{width:351.746667pt;}
.w5{width:404.706667pt;}
.wa{width:604.733333pt;}
.w4{width:614.013333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.600000pt;}
.x16{left:26.080000pt;}
.xc{left:28.480000pt;}
.x3d{left:33.120000pt;}
.x36{left:36.320000pt;}
.x5c{left:37.600000pt;}
.x39{left:40.000000pt;}
.x30{left:41.280000pt;}
.x2e{left:43.552000pt;}
.x32{left:45.000000pt;}
.x3b{left:46.112000pt;}
.x33{left:47.240000pt;}
.x3c{left:49.120000pt;}
.x35{left:50.400000pt;}
.x60{left:51.720000pt;}
.x18{left:52.640000pt;}
.x61{left:54.440000pt;}
.x17{left:55.360000pt;}
.x2a{left:61.760000pt;}
.x2d{left:65.600000pt;}
.x19{left:70.400000pt;}
.x6a{left:73.274667pt;}
.x27{left:77.920000pt;}
.x50{left:79.514667pt;}
.x52{left:81.280000pt;}
.x2b{left:88.000000pt;}
.xb{left:93.632000pt;}
.x8{left:94.591988pt;}
.x64{left:99.520000pt;}
.x68{left:106.400000pt;}
.xf{left:107.400000pt;}
.x10{left:110.600000pt;}
.x2{left:114.271988pt;}
.x1{left:117.311988pt;}
.x42{left:118.906667pt;}
.xa{left:121.311988pt;}
.x41{left:122.746667pt;}
.x3f{left:126.074667pt;}
.x5b{left:128.992000pt;}
.x45{left:131.354667pt;}
.x7{left:132.351988pt;}
.x4e{left:135.034667pt;}
.x3e{left:136.634667pt;}
.x22{left:142.586655pt;}
.x62{left:147.514667pt;}
.x1c{left:148.680000pt;}
.x28{left:150.760000pt;}
.x23{left:154.920000pt;}
.x11{left:157.160000pt;}
.x2f{left:160.186667pt;}
.x1d{left:161.480000pt;}
.x6{left:165.626655pt;}
.x1a{left:166.760000pt;}
.xe{left:170.106667pt;}
.x4b{left:173.306655pt;}
.x57{left:186.280000pt;}
.x4f{left:187.714667pt;}
.x46{left:198.106655pt;}
.x49{left:202.906655pt;}
.x48{left:204.506655pt;}
.x12{left:205.960000pt;}
.x25{left:212.040000pt;}
.x13{left:215.880000pt;}
.x29{left:218.440000pt;}
.x3{left:219.546655pt;}
.x56{left:221.626655pt;}
.x47{left:223.706655pt;}
.x43{left:227.066655pt;}
.x4d{left:233.146655pt;}
.x58{left:234.746655pt;}
.x24{left:237.960000pt;}
.x69{left:244.186655pt;}
.x5a{left:247.706655pt;}
.x31{left:254.586667pt;}
.x14{left:259.720000pt;}
.x59{left:263.586655pt;}
.x67{left:265.160000pt;}
.x1b{left:268.040000pt;}
.x66{left:269.640000pt;}
.x26{left:271.586667pt;}
.x2c{left:291.266655pt;}
.x21{left:292.226655pt;}
.x54{left:295.106667pt;}
.x51{left:296.066667pt;}
.x9{left:305.506655pt;}
.x1f{left:336.866655pt;}
.x34{left:349.186667pt;}
.x5d{left:364.706667pt;}
.x65{left:377.981333pt;}
.x44{left:395.106667pt;}
.x40{left:396.866667pt;}
.x4{left:412.546643pt;}
.x5{left:417.826655pt;}
.x4a{left:431.901333pt;}
.x4c{left:440.861333pt;}
.x37{left:443.773333pt;}
.x63{left:446.333333pt;}
.x5e{left:465.373333pt;}
.x55{left:495.773333pt;}
.x53{left:497.693333pt;}
.x20{left:514.493322pt;}
.x38{left:538.173333pt;}
.x1e{left:550.653322pt;}
.x5f{left:568.893333pt;}
.x15{left:574.813333pt;}
.x3a{left:632.773333pt;}
}




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