
    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_cf4ed400703c7817c26939de.woff')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_bc119f1665ded1ed3fae0510.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_177cf4f6be1ccd8f8d15d85a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_112b784cb2b9c40e27c4af99.woff')format("woff");}.ff4{font-family:ff4;line-height:0.844000;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_2233d1ddca1161f84cb6fd7a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.885000;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_e97715d0dcc76f98217e8506.woff')format("woff");}.ff6{font-family:ff6;line-height:0.840000;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_9d4d910185252b16bdadc289.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_8a1e3db1ae2bc47accba19e7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.689000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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);}
.v3{vertical-align:-65.754000px;}
.v5{vertical-align:-32.874000px;}
.v1{vertical-align:-8.964000px;}
.v8{vertical-align:-7.640561px;}
.v9{vertical-align:-2.144625px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:7.331625px;}
.v7{vertical-align:12.734269px;}
.v6{vertical-align:17.827976px;}
.v2{vertical-align:21.702000px;}
.v4{vertical-align:65.754000px;}
.lsc{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000054px;}
.ls14{letter-spacing:0.000960px;}
.ls3{letter-spacing:0.001261px;}
.lsd{letter-spacing:0.001555px;}
.ls9{letter-spacing:0.004200px;}
.ls6{letter-spacing:0.004366px;}
.ls1{letter-spacing:1.495261px;}
.ls4{letter-spacing:2.446766px;}
.lsf{letter-spacing:2.452766px;}
.ls0{letter-spacing:2.960467px;}
.lse{letter-spacing:2.986348px;}
.ls2{letter-spacing:2.992348px;}
.lsb{letter-spacing:14.939995px;}
.lsa{letter-spacing:14.945995px;}
.ls7{letter-spacing:17.928600px;}
.ls12{letter-spacing:17.934600px;}
.ls5{letter-spacing:94.654348px;}
.ls11{letter-spacing:108.584640px;}
.ls10{letter-spacing:116.858640px;}
.ls8{letter-spacing:116.864640px;}
.ls15{letter-spacing:152.227392px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3b{word-spacing:-152.227392px;}
.ws7{word-spacing:-40.336459px;}
.ws2e{word-spacing:-36.881545px;}
.ws9{word-spacing:-16.617617px;}
.wsa{word-spacing:-14.943900px;}
.ws4{word-spacing:-10.460700px;}
.ws5{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws0{word-spacing:0.000000px;}
.ws38{word-spacing:9.068073px;}
.ws1{word-spacing:13.391568px;}
.ws1f{word-spacing:13.395802px;}
.ws39{word-spacing:22.021880px;}
.ws35{word-spacing:56.786700px;}
.ws18{word-spacing:56.786820px;}
.wse{word-spacing:60.134254px;}
.ws17{word-spacing:61.748195px;}
.ws1a{word-spacing:70.894500px;}
.ws19{word-spacing:71.670944px;}
.ws29{word-spacing:71.728500px;}
.wsf{word-spacing:71.730720px;}
.ws26{word-spacing:72.568500px;}
.ws12{word-spacing:74.659724px;}
.ws2c{word-spacing:78.368700px;}
.ws14{word-spacing:79.979753px;}
.ws25{word-spacing:82.311001px;}
.ws34{word-spacing:82.370777px;}
.ws10{word-spacing:82.908757px;}
.ws2f{word-spacing:82.968533px;}
.ws23{word-spacing:85.834500px;}
.wsb{word-spacing:86.674620px;}
.ws13{word-spacing:89.603624px;}
.ws8{word-spacing:91.755546px;}
.ws2b{word-spacing:93.310500px;}
.ws36{word-spacing:93.608590px;}
.wsc{word-spacing:93.668365px;}
.ws2a{word-spacing:96.597370px;}
.ws15{word-spacing:96.657145px;}
.wsd{word-spacing:97.852657px;}
.ws22{word-spacing:100.780500px;}
.ws33{word-spacing:104.906178px;}
.ws27{word-spacing:104.942882px;}
.ws1c{word-spacing:109.096500px;}
.ws1d{word-spacing:110.770500px;}
.ws32{word-spacing:112.796557px;}
.ws2{word-spacing:113.218849px;}
.ws2d{word-spacing:113.219608px;}
.ws24{word-spacing:116.502644px;}
.ws31{word-spacing:116.828700px;}
.ws28{word-spacing:121.344468px;}
.ws21{word-spacing:122.838025px;}
.ws1b{word-spacing:124.036500px;}
.ws30{word-spacing:124.811453px;}
.ws11{word-spacing:127.354500px;}
.ws3{word-spacing:129.593501px;}
.ws6{word-spacing:137.784025px;}
.ws20{word-spacing:139.815128px;}
.ws3a{word-spacing:149.760128px;}
.ws37{word-spacing:260.045608px;}
.ws16{word-spacing:484.660500px;}
._7c{margin-left:-152.227392px;}
._35{margin-left:-8.667515px;}
._1{margin-left:-7.262784px;}
._3{margin-left:-4.949453px;}
._5e{margin-left:-3.809914px;}
._48{margin-left:-2.689902px;}
._2{margin-left:-1.613952px;}
._6d{width:1.284251px;}
._7{width:2.362504px;}
._55{width:3.708894px;}
._18{width:14.943900px;}
._0{width:16.677504px;}
._5d{width:71.057885px;}
._9{width:72.328897px;}
._52{width:73.401067px;}
._1e{width:75.132247px;}
._42{width:76.302101px;}
._d{width:77.619668px;}
._1f{width:79.829300px;}
._6b{width:83.564747px;}
._2a{width:84.760432px;}
._2c{width:86.045726px;}
._15{width:87.571254px;}
._1d{width:89.592466px;}
._5f{width:90.739361px;}
._1b{width:91.842919px;}
._60{width:93.306892px;}
._53{width:94.983850px;}
._26{width:96.418043px;}
._4d{width:97.494425px;}
._34{width:99.046410px;}
._16{width:101.582507px;}
._11{width:104.566982px;}
._12{width:106.818997px;}
._2b{width:108.013500px;}
._6c{width:109.030694px;}
._13{width:110.166431px;}
._e{width:111.541270px;}
._10{width:112.796557px;}
._40{width:117.040625px;}
._2e{width:118.116586px;}
._f{width:119.850078px;}
._47{width:121.523795px;}
._36{width:123.436614px;}
._2f{width:124.875034px;}
._21{width:127.564966px;}
._41{width:129.024457px;}
._66{width:131.745748px;}
._8{width:132.821058px;}
._29{width:134.618576px;}
._14{width:135.698950px;}
._22{width:138.081636px;}
._24{width:139.815128px;}
._65{width:141.085027px;}
._32{width:143.464687px;}
._54{width:145.673137px;}
._37{width:147.549583px;}
._2d{width:149.766221px;}
._4f{width:151.172492px;}
._31{width:152.248453px;}
._49{width:153.638407px;}
._6{width:154.759028px;}
._68{width:156.403928px;}
._30{width:157.450472px;}
._28{width:159.931350px;}
._25{width:161.388787px;}
._4{width:163.067837px;}
._33{width:164.681778px;}
._63{width:167.876696px;}
._67{width:170.295895px;}
._44{width:171.914626px;}
._19{width:173.827445px;}
._1c{width:175.441386px;}
._c{width:177.241574px;}
._17{width:179.027922px;}
._69{width:183.717032px;}
._20{width:189.552263px;}
._6a{width:195.360499px;}
._5b{width:197.080153px;}
._5a{width:202.875751px;}
._59{width:208.891086px;}
._4c{width:211.988077px;}
._5c{width:213.041556px;}
._61{width:214.502050px;}
._4a{width:216.957628px;}
._51{width:219.496003px;}
._a{width:222.006578px;}
._45{width:227.861326px;}
._46{width:229.479467px;}
._3e{width:231.901010px;}
._4b{width:233.065064px;}
._57{width:234.595607px;}
._38{width:237.787337px;}
._4e{width:240.353909px;}
._23{width:242.834687px;}
._5{width:246.096145px;}
._3b{width:247.775458px;}
._3f{width:248.902337px;}
._43{width:255.916253px;}
._3c{width:269.289078px;}
._50{width:280.784137px;}
._b{width:283.396120px;}
._56{width:311.675311px;}
._39{width:326.674374px;}
._3a{width:328.168044px;}
._62{width:448.974532px;}
._58{width:463.918432px;}
._64{width:468.879806px;}
._3d{width:482.986848px;}
._27{width:499.604465px;}
._1a{width:514.548365px;}
._75{width:640.902129px;}
._71{width:657.822522px;}
._6e{width:670.620048px;}
._78{width:686.627928px;}
._77{width:688.162856px;}
._72{width:697.961922px;}
._74{width:723.878967px;}
._76{width:726.100599px;}
._6f{width:727.568520px;}
._70{width:730.652648px;}
._73{width:753.470004px;}
._7a{width:758.218104px;}
._79{width:760.602129px;}
._7b{width:782.804484px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:26.812800px;}
.fs9{font-size:31.281600px;}
.fs5{font-size:32.599728px;}
.fs6{font-size:38.304000px;}
.fs2{font-size:41.842800px;}
.fs8{font-size:44.688000px;}
.fs4{font-size:46.571040px;}
.fs0{font-size:53.798400px;}
.fs3{font-size:54.332880px;}
.fs1{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.350503px;}
.y6a{bottom:5.183409px;}
.y7f{bottom:7.022001px;}
.y23{bottom:17.747932px;}
.y69{bottom:19.185815px;}
.y7e{bottom:21.024407px;}
.y6c{bottom:33.166122px;}
.y22{bottom:34.772437px;}
.y80{bottom:35.003300px;}
.yc{bottom:95.683500px;}
.y68{bottom:103.274965px;}
.y25{bottom:104.566283px;}
.y7d{bottom:104.970712px;}
.y24{bottom:107.749850px;}
.y46{bottom:108.386564px;}
.y2{bottom:125.571000px;}
.yd{bottom:134.536500px;}
.y12{bottom:138.063000px;}
.ye{bottom:138.064500px;}
.y27{bottom:145.077056px;}
.y26{bottom:148.260623px;}
.y47{bottom:149.003455px;}
.y17{bottom:149.710500px;}
.y13{bottom:149.919000px;}
.y1a{bottom:152.632500px;}
.y19{bottom:152.841000px;}
.y14{bottom:153.447000px;}
.y3{bottom:161.964000px;}
.y7{bottom:165.490500px;}
.y8{bottom:165.492000px;}
.y4{bottom:169.227000px;}
.y67{bottom:173.383807px;}
.y11{bottom:174.468000px;}
.y7c{bottom:174.938125px;}
.yf{bottom:178.203000px;}
.y29{bottom:185.693947px;}
.y28{bottom:188.877515px;}
.y48{bottom:189.620347px;}
.y15{bottom:195.454500px;}
.y18{bottom:195.873000px;}
.y1b{bottom:201.282000px;}
.y20{bottom:204.181500px;}
.y1d{bottom:205.011000px;}
.y1e{bottom:205.429500px;}
.y1f{bottom:208.029000px;}
.y6d{bottom:209.547000px;}
.y9{bottom:210.547500px;}
.ya{bottom:210.966000px;}
.yb{bottom:214.350000px;}
.y5{bottom:220.575000px;}
.y2b{bottom:226.310839px;}
.y2a{bottom:229.494406px;}
.y49{bottom:230.237239px;}
.y58{bottom:231.963000px;}
.y66{bottom:243.492650px;}
.y7b{bottom:244.905537px;}
.y2d{bottom:266.927731px;}
.y2c{bottom:270.111298px;}
.y4a{bottom:270.854130px;}
.y10{bottom:273.754500px;}
.y16{bottom:284.370000px;}
.y1c{bottom:292.269000px;}
.y6{bottom:305.337000px;}
.y2f{bottom:307.544622px;}
.y2e{bottom:310.728190px;}
.y4b{bottom:311.471022px;}
.y65{bottom:314.137649px;}
.y7a{bottom:315.409106px;}
.y64{bottom:317.803461px;}
.y57{bottom:318.427500px;}
.y79{bottom:319.074918px;}
.y21{bottom:340.843500px;}
.y31{bottom:348.161514px;}
.y30{bottom:351.345081px;}
.y4c{bottom:352.087914px;}
.y63{bottom:383.710335px;}
.y78{bottom:384.840362px;}
.y33{bottom:388.778406px;}
.y32{bottom:391.961973px;}
.y4d{bottom:392.704805px;}
.y35{bottom:429.395297px;}
.y34{bottom:432.578865px;}
.y4e{bottom:433.321697px;}
.y62{bottom:453.819177px;}
.y77{bottom:454.807774px;}
.y37{bottom:470.012189px;}
.y36{bottom:473.195756px;}
.y4f{bottom:473.938589px;}
.y39{bottom:510.735200px;}
.y38{bottom:513.918767px;}
.y50{bottom:514.555480px;}
.y61{bottom:523.928020px;}
.y76{bottom:524.775186px;}
.y3b{bottom:551.245973px;}
.y3a{bottom:554.429540px;}
.y51{bottom:555.172372px;}
.y3d{bottom:591.862864px;}
.y60{bottom:594.036862px;}
.y75{bottom:594.742599px;}
.y3c{bottom:595.046431px;}
.y52{bottom:595.789264px;}
.y3f{bottom:632.479756px;}
.y3e{bottom:635.663323px;}
.y53{bottom:636.406155px;}
.y5f{bottom:664.145705px;}
.y74{bottom:664.710011px;}
.y41{bottom:673.096648px;}
.y40{bottom:676.280215px;}
.y54{bottom:677.023047px;}
.y43{bottom:713.713539px;}
.y42{bottom:716.897106px;}
.y55{bottom:717.639939px;}
.y5e{bottom:734.254547px;}
.y73{bottom:734.677423px;}
.y45{bottom:754.330431px;}
.y44{bottom:757.513998px;}
.y56{bottom:758.256830px;}
.y5d{bottom:804.363390px;}
.y72{bottom:804.644836px;}
.y59{bottom:874.472232px;}
.y6e{bottom:874.612248px;}
.y71{bottom:901.353707px;}
.y5c{bottom:901.360778px;}
.y70{bottom:915.418457px;}
.y5b{bottom:915.425528px;}
.y6f{bottom:929.483207px;}
.y5a{bottom:929.490278px;}
.y1{bottom:1201.536000px;}
.hd{height:24.909091px;}
.hc{height:35.584416px;}
.he{height:41.515152px;}
.ha{height:43.264496px;}
.h2{height:47.880576px;}
.h8{height:48.113124px;}
.hf{height:48.846777px;}
.h7{height:50.475246px;}
.h3{height:53.200284px;}
.h9{height:55.998765px;}
.h5{height:58.942092px;}
.h4{height:118.954284px;}
.h6{height:838.276780px;}
.hb{height:947.162160px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:735.435204px;}
.w2{width:782.391532px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7a{left:13.467794px;}
.x92{left:19.802726px;}
.x77{left:21.229634px;}
.x7b{left:28.021244px;}
.x76{left:30.931934px;}
.x7e{left:32.872394px;}
.x7d{left:36.753314px;}
.x72{left:40.634234px;}
.x7c{left:45.485384px;}
.x79{left:47.425844px;}
.x40{left:55.275000px;}
.x80{left:78.745500px;}
.x30{left:88.951500px;}
.x4c{left:97.309500px;}
.x2{left:104.025000px;}
.x93{left:110.267640px;}
.x8c{left:111.863640px;}
.x1{left:118.590000px;}
.x31{left:121.263000px;}
.x78{left:126.274844px;}
.x4d{left:129.621000px;}
.x73{left:131.489830px;}
.x3{left:139.066500px;}
.x4e{left:146.658000px;}
.x74{left:152.171079px;}
.x32{left:154.737000px;}
.x4{left:156.102000px;}
.x50{left:163.095000px;}
.x75{left:167.458455px;}
.x82{left:169.217356px;}
.x33{left:171.175500px;}
.x5{left:173.137500px;}
.x81{left:176.709659px;}
.x51{left:179.533500px;}
.x86{left:181.385440px;}
.x8b{left:184.016346px;}
.x34{left:188.211000px;}
.x7{left:189.576000px;}
.x87{left:190.674659px;}
.x52{left:195.972000px;}
.x85{left:197.507534px;}
.x8a{left:199.352909px;}
.x35{left:204.649500px;}
.x8{left:206.014500px;}
.x88{left:209.246550px;}
.x4f{left:212.410500px;}
.x89{left:213.773174px;}
.x36{left:221.088000px;}
.x9{left:222.453000px;}
.x53{left:228.849000px;}
.x6{left:230.671500px;}
.x41{left:237.228000px;}
.xa{left:238.891500px;}
.x54{left:245.287500px;}
.x70{left:249.719066px;}
.x42{left:253.666500px;}
.xb{left:255.330000px;}
.x94{left:256.904486px;}
.x55{left:261.726000px;}
.x43{left:270.702000px;}
.xc{left:271.768500px;}
.x8d{left:274.470105px;}
.x56{left:278.164500px;}
.x44{left:287.140500px;}
.xd{left:288.207000px;}
.x37{left:296.256000px;}
.x45{left:303.579000px;}
.xe{left:305.242500px;}
.x57{left:313.152000px;}
.x46{left:320.614500px;}
.xf{left:321.681000px;}
.x58{left:329.590500px;}
.x47{left:337.053000px;}
.x10{left:338.119500px;}
.x59{left:346.029000px;}
.x95{left:347.369400px;}
.x8e{left:348.965400px;}
.x2f{left:350.259000px;}
.x48{left:354.088500px;}
.x11{left:355.155000px;}
.x5a{left:362.467500px;}
.x49{left:370.527000px;}
.x13{left:371.593500px;}
.x5b{left:379.503000px;}
.x14{left:388.032000px;}
.x38{left:395.484000px;}
.x71{left:396.691164px;}
.x15{left:404.470500px;}
.x5d{left:412.380000px;}
.x8f{left:415.644325px;}
.x16{left:420.909000px;}
.x12{left:429.127500px;}
.x17{left:437.347500px;}
.x5c{left:445.257000px;}
.x18{left:453.786000px;}
.x4a{left:462.133500px;}
.x19{left:470.224500px;}
.x5e{left:478.134000px;}
.x1a{left:486.661500px;}
.x5f{left:494.572500px;}
.x1b{left:503.100000px;}
.x60{left:511.011000px;}
.x1c{left:520.137000px;}
.x61{left:528.046500px;}
.x1d{left:536.575500px;}
.x62{left:544.485000px;}
.x1e{left:553.014000px;}
.x39{left:554.040000px;}
.x63{left:560.923500px;}
.x1f{left:570.049500px;}
.x64{left:577.362000px;}
.x96{left:584.471160px;}
.x20{left:586.488000px;}
.x90{left:592.891463px;}
.x65{left:594.397500px;}
.x21{left:603.523500px;}
.x66{left:610.836000px;}
.x23{left:619.962000px;}
.x22{left:628.182000px;}
.x24{left:636.400500px;}
.x67{left:644.310000px;}
.x25{left:652.839000px;}
.x68{left:661.347000px;}
.x91{left:666.062710px;}
.x26{left:669.874500px;}
.x84{left:674.293501px;}
.x2e{left:676.068000px;}
.x69{left:677.785500px;}
.x27{left:686.313000px;}
.x83{left:692.692843px;}
.x6a{left:694.224000px;}
.x7f{left:700.355674px;}
.x28{left:702.751500px;}
.x6b{left:710.662500px;}
.x3a{left:718.423500px;}
.x29{left:719.788500px;}
.x4b{left:727.539000px;}
.x3b{left:734.860500px;}
.x2a{left:736.227000px;}
.x6c{left:743.538000px;}
.x3c{left:751.299000px;}
.x2b{left:752.665500px;}
.x6d{left:759.976500px;}
.x3d{left:768.336000px;}
.x2c{left:769.701000px;}
.x6e{left:776.415000px;}
.x3e{left:784.774500px;}
.x2d{left:786.139500px;}
.x6f{left:792.853500px;}
.x3f{left:801.213000px;}
@media print{
.v3{vertical-align:-58.448000pt;}
.v5{vertical-align:-29.221333pt;}
.v1{vertical-align:-7.968000pt;}
.v8{vertical-align:-6.791610pt;}
.v9{vertical-align:-1.906333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:6.517000pt;}
.v7{vertical-align:11.319350pt;}
.v6{vertical-align:15.847090pt;}
.v2{vertical-align:19.290667pt;}
.v4{vertical-align:58.448000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000048pt;}
.ls14{letter-spacing:0.000853pt;}
.ls3{letter-spacing:0.001121pt;}
.lsd{letter-spacing:0.001382pt;}
.ls9{letter-spacing:0.003733pt;}
.ls6{letter-spacing:0.003881pt;}
.ls1{letter-spacing:1.329121pt;}
.ls4{letter-spacing:2.174903pt;}
.lsf{letter-spacing:2.180237pt;}
.ls0{letter-spacing:2.631526pt;}
.lse{letter-spacing:2.654531pt;}
.ls2{letter-spacing:2.659865pt;}
.lsb{letter-spacing:13.279996pt;}
.lsa{letter-spacing:13.285329pt;}
.ls7{letter-spacing:15.936533pt;}
.ls12{letter-spacing:15.941867pt;}
.ls5{letter-spacing:84.137198pt;}
.ls11{letter-spacing:96.519680pt;}
.ls10{letter-spacing:103.874347pt;}
.ls8{letter-spacing:103.879680pt;}
.ls15{letter-spacing:135.313237pt;}
.ws3b{word-spacing:-135.313237pt;}
.ws7{word-spacing:-35.854630pt;}
.ws2e{word-spacing:-32.783596pt;}
.ws9{word-spacing:-14.771215pt;}
.wsa{word-spacing:-13.283467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws5{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws0{word-spacing:0.000000pt;}
.ws38{word-spacing:8.060509pt;}
.ws1{word-spacing:11.903616pt;}
.ws1f{word-spacing:11.907379pt;}
.ws39{word-spacing:19.575005pt;}
.ws35{word-spacing:50.477067pt;}
.ws18{word-spacing:50.477173pt;}
.wse{word-spacing:53.452670pt;}
.ws17{word-spacing:54.887284pt;}
.ws1a{word-spacing:63.017333pt;}
.ws19{word-spacing:63.707506pt;}
.ws29{word-spacing:63.758667pt;}
.wsf{word-spacing:63.760640pt;}
.ws26{word-spacing:64.505333pt;}
.ws12{word-spacing:66.364199pt;}
.ws2c{word-spacing:69.661067pt;}
.ws14{word-spacing:71.093114pt;}
.ws25{word-spacing:73.165334pt;}
.ws34{word-spacing:73.218468pt;}
.ws10{word-spacing:73.696673pt;}
.ws2f{word-spacing:73.749807pt;}
.ws23{word-spacing:76.297333pt;}
.wsb{word-spacing:77.044107pt;}
.ws13{word-spacing:79.647666pt;}
.ws8{word-spacing:81.560485pt;}
.ws2b{word-spacing:82.942667pt;}
.ws36{word-spacing:83.207635pt;}
.wsc{word-spacing:83.260769pt;}
.ws2a{word-spacing:85.864329pt;}
.ws15{word-spacing:85.917462pt;}
.wsd{word-spacing:86.980140pt;}
.ws22{word-spacing:89.582667pt;}
.ws33{word-spacing:93.249936pt;}
.ws27{word-spacing:93.282562pt;}
.ws1c{word-spacing:96.974667pt;}
.ws1d{word-spacing:98.462667pt;}
.ws32{word-spacing:100.263606pt;}
.ws2{word-spacing:100.638977pt;}
.ws2d{word-spacing:100.639651pt;}
.ws24{word-spacing:103.557906pt;}
.ws31{word-spacing:103.847733pt;}
.ws28{word-spacing:107.861749pt;}
.ws21{word-spacing:109.189356pt;}
.ws1b{word-spacing:110.254667pt;}
.ws30{word-spacing:110.943514pt;}
.ws11{word-spacing:113.204000pt;}
.ws3{word-spacing:115.194223pt;}
.ws6{word-spacing:122.474689pt;}
.ws20{word-spacing:124.280114pt;}
.ws3a{word-spacing:133.120114pt;}
.ws37{word-spacing:231.151652pt;}
.ws16{word-spacing:430.809333pt;}
._7c{margin-left:-135.313237pt;}
._35{margin-left:-7.704458pt;}
._1{margin-left:-6.455808pt;}
._3{margin-left:-4.399514pt;}
._5e{margin-left:-3.386590pt;}
._48{margin-left:-2.391024pt;}
._2{margin-left:-1.434624pt;}
._6d{width:1.141556pt;}
._7{width:2.100003pt;}
._55{width:3.296795pt;}
._18{width:13.283467pt;}
._0{width:14.824448pt;}
._5d{width:63.162564pt;}
._9{width:64.292353pt;}
._52{width:65.245393pt;}
._1e{width:66.784220pt;}
._42{width:67.824090pt;}
._d{width:68.995261pt;}
._1f{width:70.959378pt;}
._6b{width:74.279775pt;}
._2a{width:75.342606pt;}
._2c{width:76.485090pt;}
._15{width:77.841115pt;}
._1d{width:79.637747pt;}
._5f{width:80.657210pt;}
._1b{width:81.638150pt;}
._60{width:82.939459pt;}
._53{width:84.430089pt;}
._26{width:85.704927pt;}
._4d{width:86.661711pt;}
._34{width:88.041253pt;}
._16{width:90.295562pt;}
._11{width:92.948429pt;}
._12{width:94.950220pt;}
._2b{width:96.012000pt;}
._6c{width:96.916173pt;}
._13{width:97.925716pt;}
._e{width:99.147795pt;}
._10{width:100.263606pt;}
._40{width:104.036111pt;}
._2e{width:104.992521pt;}
._f{width:106.533403pt;}
._47{width:108.021151pt;}
._36{width:109.721435pt;}
._2f{width:111.000030pt;}
._21{width:113.391081pt;}
._41{width:114.688406pt;}
._66{width:117.107331pt;}
._8{width:118.063163pt;}
._29{width:119.660957pt;}
._14{width:120.621289pt;}
._22{width:122.739232pt;}
._24{width:124.280114pt;}
._65{width:125.408913pt;}
._32{width:127.524166pt;}
._54{width:129.487233pt;}
._37{width:131.155185pt;}
._2d{width:133.125530pt;}
._4f{width:134.375549pt;}
._31{width:135.331958pt;}
._49{width:136.567473pt;}
._6{width:137.563581pt;}
._68{width:139.025714pt;}
._30{width:139.955975pt;}
._28{width:142.161200pt;}
._25{width:143.456700pt;}
._4{width:144.949188pt;}
._33{width:146.383803pt;}
._63{width:149.223730pt;}
._67{width:151.374129pt;}
._44{width:152.813001pt;}
._19{width:154.513284pt;}
._1c{width:155.947899pt;}
._c{width:157.548066pt;}
._17{width:159.135931pt;}
._69{width:163.304029pt;}
._20{width:168.490900pt;}
._6a{width:173.653777pt;}
._5b{width:175.182358pt;}
._5a{width:180.334001pt;}
._59{width:185.680965pt;}
._4c{width:188.433846pt;}
._5c{width:189.370272pt;}
._61{width:190.668489pt;}
._4a{width:192.851225pt;}
._51{width:195.107558pt;}
._a{width:197.339181pt;}
._45{width:202.543401pt;}
._46{width:203.981748pt;}
._3e{width:206.134231pt;}
._4b{width:207.168946pt;}
._57{width:208.529428pt;}
._38{width:211.366522pt;}
._4e{width:213.647919pt;}
._23{width:215.853055pt;}
._5{width:218.752129pt;}
._3b{width:220.244851pt;}
._3f{width:221.246522pt;}
._43{width:227.481114pt;}
._3c{width:239.368069pt;}
._50{width:249.585900pt;}
._b{width:251.907662pt;}
._56{width:277.044721pt;}
._39{width:290.377221pt;}
._3a{width:291.704928pt;}
._62{width:399.088473pt;}
._58{width:412.371939pt;}
._64{width:416.782050pt;}
._3d{width:429.321643pt;}
._27{width:444.092858pt;}
._1a{width:457.376324pt;}
._75{width:569.690781pt;}
._71{width:584.731131pt;}
._6e{width:596.106709pt;}
._78{width:610.335936pt;}
._77{width:611.700317pt;}
._72{width:620.410597pt;}
._74{width:643.447971pt;}
._76{width:645.422755pt;}
._6f{width:646.727573pt;}
._70{width:649.469020pt;}
._73{width:669.751115pt;}
._7a{width:673.971648pt;}
._79{width:676.090781pt;}
._7b{width:695.826208pt;}
.fs7{font-size:23.833600pt;}
.fs9{font-size:27.805867pt;}
.fs5{font-size:28.977536pt;}
.fs6{font-size:34.048000pt;}
.fs2{font-size:37.193600pt;}
.fs8{font-size:39.722667pt;}
.fs4{font-size:41.396480pt;}
.fs0{font-size:47.820800pt;}
.fs3{font-size:48.295893pt;}
.fs1{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:2.978225pt;}
.y6a{bottom:4.607475pt;}
.y7f{bottom:6.241779pt;}
.y23{bottom:15.775940pt;}
.y69{bottom:17.054058pt;}
.y7e{bottom:18.688362pt;}
.y6c{bottom:29.480998pt;}
.y22{bottom:30.908833pt;}
.y80{bottom:31.114045pt;}
.yc{bottom:85.052000pt;}
.y68{bottom:91.799969pt;}
.y25{bottom:92.947807pt;}
.y7d{bottom:93.307300pt;}
.y24{bottom:95.777645pt;}
.y46{bottom:96.343612pt;}
.y2{bottom:111.618667pt;}
.yd{bottom:119.588000pt;}
.y12{bottom:122.722667pt;}
.ye{bottom:122.724000pt;}
.y27{bottom:128.957383pt;}
.y26{bottom:131.787220pt;}
.y47{bottom:132.447516pt;}
.y17{bottom:133.076000pt;}
.y13{bottom:133.261333pt;}
.y1a{bottom:135.673333pt;}
.y19{bottom:135.858667pt;}
.y14{bottom:136.397333pt;}
.y3{bottom:143.968000pt;}
.y7{bottom:147.102667pt;}
.y8{bottom:147.104000pt;}
.y4{bottom:150.424000pt;}
.y67{bottom:154.118940pt;}
.y11{bottom:155.082667pt;}
.y7c{bottom:155.500555pt;}
.yf{bottom:158.402667pt;}
.y29{bottom:165.061287pt;}
.y28{bottom:167.891124pt;}
.y48{bottom:168.551419pt;}
.y15{bottom:173.737333pt;}
.y18{bottom:174.109333pt;}
.y1b{bottom:178.917333pt;}
.y20{bottom:181.494667pt;}
.y1d{bottom:182.232000pt;}
.y1e{bottom:182.604000pt;}
.y1f{bottom:184.914667pt;}
.y6d{bottom:186.264000pt;}
.y9{bottom:187.153333pt;}
.ya{bottom:187.525333pt;}
.yb{bottom:190.533333pt;}
.y5{bottom:196.066667pt;}
.y2b{bottom:201.165190pt;}
.y2a{bottom:203.995028pt;}
.y49{bottom:204.655323pt;}
.y58{bottom:206.189333pt;}
.y66{bottom:216.437911pt;}
.y7b{bottom:217.693811pt;}
.y2d{bottom:237.269094pt;}
.y2c{bottom:240.098932pt;}
.y4a{bottom:240.759227pt;}
.y10{bottom:243.337333pt;}
.y16{bottom:252.773333pt;}
.y1c{bottom:259.794667pt;}
.y6{bottom:271.410667pt;}
.y2f{bottom:273.372998pt;}
.y2e{bottom:276.202835pt;}
.y4b{bottom:276.863131pt;}
.y65{bottom:279.233465pt;}
.y7a{bottom:280.363649pt;}
.y64{bottom:282.491965pt;}
.y57{bottom:283.046667pt;}
.y79{bottom:283.622149pt;}
.y21{bottom:302.972000pt;}
.y31{bottom:309.476901pt;}
.y30{bottom:312.306739pt;}
.y4c{bottom:312.967034pt;}
.y63{bottom:341.075853pt;}
.y78{bottom:342.080321pt;}
.y33{bottom:345.580805pt;}
.y32{bottom:348.410643pt;}
.y4d{bottom:349.070938pt;}
.y35{bottom:381.684709pt;}
.y34{bottom:384.514546pt;}
.y4e{bottom:385.174842pt;}
.y62{bottom:403.394824pt;}
.y77{bottom:404.273577pt;}
.y37{bottom:417.788613pt;}
.y36{bottom:420.618450pt;}
.y4f{bottom:421.278746pt;}
.y39{bottom:453.986844pt;}
.y38{bottom:456.816682pt;}
.y50{bottom:457.382649pt;}
.y61{bottom:465.713795pt;}
.y76{bottom:466.466832pt;}
.y3b{bottom:489.996420pt;}
.y3a{bottom:492.826258pt;}
.y51{bottom:493.486553pt;}
.y3d{bottom:526.100324pt;}
.y60{bottom:528.032766pt;}
.y75{bottom:528.660088pt;}
.y3c{bottom:528.930161pt;}
.y52{bottom:529.590457pt;}
.y3f{bottom:562.204227pt;}
.y3e{bottom:565.034065pt;}
.y53{bottom:565.694360pt;}
.y5f{bottom:590.351737pt;}
.y74{bottom:590.853343pt;}
.y41{bottom:598.308131pt;}
.y40{bottom:601.137969pt;}
.y54{bottom:601.798264pt;}
.y43{bottom:634.412035pt;}
.y42{bottom:637.241872pt;}
.y55{bottom:637.902168pt;}
.y5e{bottom:652.670708pt;}
.y73{bottom:653.046598pt;}
.y45{bottom:670.515939pt;}
.y44{bottom:673.345776pt;}
.y56{bottom:674.006072pt;}
.y5d{bottom:714.989680pt;}
.y72{bottom:715.239854pt;}
.y59{bottom:777.308651pt;}
.y6e{bottom:777.433109pt;}
.y71{bottom:801.203295pt;}
.y5c{bottom:801.209581pt;}
.y70{bottom:813.705295pt;}
.y5b{bottom:813.711581pt;}
.y6f{bottom:826.207295pt;}
.y5a{bottom:826.213581pt;}
.y1{bottom:1068.032000pt;}
.hd{height:22.141414pt;}
.hc{height:31.630592pt;}
.he{height:36.902357pt;}
.ha{height:38.457330pt;}
.h2{height:42.560512pt;}
.h8{height:42.767221pt;}
.hf{height:43.419357pt;}
.h7{height:44.866885pt;}
.h3{height:47.289141pt;}
.h9{height:49.776680pt;}
.h5{height:52.392971pt;}
.h4{height:105.737141pt;}
.h6{height:745.134915pt;}
.hb{height:841.921920pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:653.720181pt;}
.w2{width:695.459139pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7a{left:11.971372pt;}
.x92{left:17.602423pt;}
.x77{left:18.870786pt;}
.x7b{left:24.907772pt;}
.x76{left:27.495052pt;}
.x7e{left:29.219906pt;}
.x7d{left:32.669612pt;}
.x72{left:36.119319pt;}
.x7c{left:40.431452pt;}
.x79{left:42.156306pt;}
.x40{left:49.133333pt;}
.x80{left:69.996000pt;}
.x30{left:79.068000pt;}
.x4c{left:86.497333pt;}
.x2{left:92.466667pt;}
.x93{left:98.015680pt;}
.x8c{left:99.434347pt;}
.x1{left:105.413333pt;}
.x31{left:107.789333pt;}
.x78{left:112.244306pt;}
.x4d{left:115.218667pt;}
.x73{left:116.879849pt;}
.x3{left:123.614667pt;}
.x4e{left:130.362667pt;}
.x74{left:135.263181pt;}
.x32{left:137.544000pt;}
.x4{left:138.757333pt;}
.x50{left:144.973333pt;}
.x75{left:148.851960pt;}
.x82{left:150.415428pt;}
.x33{left:152.156000pt;}
.x5{left:153.900000pt;}
.x81{left:157.075252pt;}
.x51{left:159.585333pt;}
.x86{left:161.231502pt;}
.x8b{left:163.570085pt;}
.x34{left:167.298667pt;}
.x7{left:168.512000pt;}
.x87{left:169.488585pt;}
.x52{left:174.197333pt;}
.x85{left:175.562252pt;}
.x8a{left:177.202585pt;}
.x35{left:181.910667pt;}
.x8{left:183.124000pt;}
.x88{left:185.996933pt;}
.x4f{left:188.809333pt;}
.x89{left:190.020599pt;}
.x36{left:196.522667pt;}
.x9{left:197.736000pt;}
.x53{left:203.421333pt;}
.x6{left:205.041333pt;}
.x41{left:210.869333pt;}
.xa{left:212.348000pt;}
.x54{left:218.033333pt;}
.x70{left:221.972503pt;}
.x42{left:225.481333pt;}
.xb{left:226.960000pt;}
.x94{left:228.359543pt;}
.x55{left:232.645333pt;}
.x43{left:240.624000pt;}
.xc{left:241.572000pt;}
.x8d{left:243.973427pt;}
.x56{left:247.257333pt;}
.x44{left:255.236000pt;}
.xd{left:256.184000pt;}
.x37{left:263.338667pt;}
.x45{left:269.848000pt;}
.xe{left:271.326667pt;}
.x57{left:278.357333pt;}
.x46{left:284.990667pt;}
.xf{left:285.938667pt;}
.x58{left:292.969333pt;}
.x47{left:299.602667pt;}
.x10{left:300.550667pt;}
.x59{left:307.581333pt;}
.x95{left:308.772800pt;}
.x8e{left:310.191467pt;}
.x2f{left:311.341333pt;}
.x48{left:314.745333pt;}
.x11{left:315.693333pt;}
.x5a{left:322.193333pt;}
.x49{left:329.357333pt;}
.x13{left:330.305333pt;}
.x5b{left:337.336000pt;}
.x14{left:344.917333pt;}
.x38{left:351.541333pt;}
.x71{left:352.614368pt;}
.x15{left:359.529333pt;}
.x5d{left:366.560000pt;}
.x8f{left:369.461622pt;}
.x16{left:374.141333pt;}
.x12{left:381.446667pt;}
.x17{left:388.753333pt;}
.x5c{left:395.784000pt;}
.x18{left:403.365333pt;}
.x4a{left:410.785333pt;}
.x19{left:417.977333pt;}
.x5e{left:425.008000pt;}
.x1a{left:432.588000pt;}
.x5f{left:439.620000pt;}
.x1b{left:447.200000pt;}
.x60{left:454.232000pt;}
.x1c{left:462.344000pt;}
.x61{left:469.374667pt;}
.x1d{left:476.956000pt;}
.x62{left:483.986667pt;}
.x1e{left:491.568000pt;}
.x39{left:492.480000pt;}
.x63{left:498.598667pt;}
.x1f{left:506.710667pt;}
.x64{left:513.210667pt;}
.x96{left:519.529920pt;}
.x20{left:521.322667pt;}
.x90{left:527.014634pt;}
.x65{left:528.353333pt;}
.x21{left:536.465333pt;}
.x66{left:542.965333pt;}
.x23{left:551.077333pt;}
.x22{left:558.384000pt;}
.x24{left:565.689333pt;}
.x67{left:572.720000pt;}
.x25{left:580.301333pt;}
.x68{left:587.864000pt;}
.x91{left:592.055742pt;}
.x26{left:595.444000pt;}
.x84{left:599.372001pt;}
.x2e{left:600.949333pt;}
.x69{left:602.476000pt;}
.x27{left:610.056000pt;}
.x83{left:615.726971pt;}
.x6a{left:617.088000pt;}
.x7f{left:622.538377pt;}
.x28{left:624.668000pt;}
.x6b{left:631.700000pt;}
.x3a{left:638.598667pt;}
.x29{left:639.812000pt;}
.x4b{left:646.701333pt;}
.x3b{left:653.209333pt;}
.x2a{left:654.424000pt;}
.x6c{left:660.922667pt;}
.x3c{left:667.821333pt;}
.x2b{left:669.036000pt;}
.x6d{left:675.534667pt;}
.x3d{left:682.965333pt;}
.x2c{left:684.178667pt;}
.x6e{left:690.146667pt;}
.x3e{left:697.577333pt;}
.x2d{left:698.790667pt;}
.x6f{left:704.758667pt;}
.x3f{left:712.189333pt;}
}




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