
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a055a8c5a65c86eaf40cff31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_260b26bbac2fbd310c2dcb11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f5c7a85ea7ba14b9e4aac165.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_e9443a19301051eb5af1511b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_7fafcdd04a945dabc3394031.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_1f43e3ac1927a86960a6f7d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_46448410d19f8472eca100d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_40a6c7eea6328dd6b12cff7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cb212dbd5181c12865959d46.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_35cf2108d15af2f03431b942.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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;}
.m1{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);}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls24{letter-spacing:-8.880000px;}
.ls26{letter-spacing:-0.810000px;}
.ls2b{letter-spacing:-0.758939px;}
.ls33{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.280200px;}
.ls39{letter-spacing:-0.273600px;}
.ls25{letter-spacing:-0.259800px;}
.ls28{letter-spacing:-0.226200px;}
.ls2f{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.106800px;}
.ls2d{letter-spacing:-0.072000px;}
.ls21{letter-spacing:-0.053280px;}
.ls3a{letter-spacing:-0.026640px;}
.ls2a{letter-spacing:-0.018973px;}
.ls19{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018973px;}
.ls13{letter-spacing:0.037947px;}
.ls31{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.056920px;}
.ls4{letter-spacing:0.066720px;}
.ls1f{letter-spacing:0.075600px;}
.ls30{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.094867px;}
.ls2c{letter-spacing:0.105600px;}
.ls17{letter-spacing:0.105840px;}
.ls18{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.113841px;}
.ls3c{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.164400px;}
.ls34{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.259920px;}
.ls38{letter-spacing:0.274800px;}
.ls1a{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.320400px;}
.ls36{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.341280px;}
.ls3{letter-spacing:0.346200px;}
.ls1c{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.376800px;}
.ls37{letter-spacing:0.385200px;}
.ls1e{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.666720px;}
.ls27{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.796886px;}
.ls2{letter-spacing:0.846720px;}
.lse{letter-spacing:0.872780px;}
.ls3f{letter-spacing:0.996000px;}
.ls11{letter-spacing:1.631719px;}
.ls5{letter-spacing:3.149597px;}
.ls6{letter-spacing:3.339332px;}
.ls3b{letter-spacing:3.546720px;}
.ls15{letter-spacing:4.667475px;}
.lsb{letter-spacing:5.426414px;}
.lsa{letter-spacing:6.185353px;}
.lsc{letter-spacing:6.311843px;}
.ls7{letter-spacing:13.774744px;}
.ls9{letter-spacing:13.901234px;}
.ls8{letter-spacing:14.533683px;}
.ls12{letter-spacing:15.292622px;}
.ls3e{letter-spacing:41.706720px;}
.ls3d{letter-spacing:55.386720px;}
.ls35{letter-spacing:64.026720px;}
.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;}
}
.ws3{word-spacing:-84.240000px;}
.wsb{word-spacing:-60.136800px;}
.ws9{word-spacing:-60.106200px;}
.wsa{word-spacing:-60.080400px;}
.ws4{word-spacing:-59.924400px;}
.ws7{word-spacing:-59.835600px;}
.ws5{word-spacing:-59.760000px;}
.wsd{word-spacing:-59.500200px;}
.ws8{word-spacing:-59.479800px;}
.ws12{word-spacing:-57.717315px;}
.ws15{word-spacing:-57.015296px;}
.ws14{word-spacing:-56.977349px;}
.ws17{word-spacing:-56.958376px;}
.ws11{word-spacing:-56.920429px;}
.ws13{word-spacing:-56.901455px;}
.ws16{word-spacing:-56.161490px;}
.ws1f{word-spacing:-54.198000px;}
.ws1d{word-spacing:-54.090000px;}
.ws1e{word-spacing:-54.054000px;}
.ws1c{word-spacing:-54.000000px;}
.ws1b{word-spacing:-53.784000px;}
.wsc{word-spacing:-33.379920px;}
.ws26{word-spacing:-17.609280px;}
.ws25{word-spacing:-16.933680px;}
.ws22{word-spacing:-16.888080px;}
.ws18{word-spacing:-16.613280px;}
.ws24{word-spacing:-16.586640px;}
.ws1{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.506480px;}
.ws23{word-spacing:-16.339680px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.220000px;}
.ws1a{word-spacing:-13.392000px;}
.ws20{word-spacing:-13.140000px;}
.wse{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.808640px;}
.ws10{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.213800px;}
.ws19{word-spacing:-8.928000px;}
.ws21{word-spacing:0.000000px;}
._3{margin-left:-9.151440px;}
._9{margin-left:-7.798099px;}
._b{margin-left:-4.363900px;}
._6{margin-left:-2.902942px;}
._0{margin-left:-1.422000px;}
._1{width:1.137600px;}
._2{width:2.792640px;}
._13{width:3.815040px;}
._7{width:4.990024px;}
._8{width:6.103943px;}
._11{width:7.167322px;}
._a{width:8.310383px;}
._4{width:9.331920px;}
._f{width:10.641600px;}
._14{width:11.655771px;}
._5{width:12.807703px;}
._c{width:14.718508px;}
._15{width:19.481760px;}
._e{width:21.633120px;}
._d{width:23.131440px;}
._10{width:24.405457px;}
._12{width:25.502205px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs9{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y41{bottom:2.700000px;}
.y4d{bottom:3.600000px;}
.y4f{bottom:5.010000px;}
.y37{bottom:7.005000px;}
.y40{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4c{bottom:22.320000px;}
.y4{bottom:32.400000px;}
.y36{bottom:33.105000px;}
.y3f{bottom:40.320000px;}
.y4b{bottom:44.640000px;}
.y3e{bottom:52.020000px;}
.y3{bottom:55.470000px;}
.ya{bottom:57.600000px;}
.y35{bottom:59.205000px;}
.y4a{bottom:63.720000px;}
.y3d{bottom:64.980000px;}
.y9{bottom:75.780000px;}
.y3c{bottom:77.970000px;}
.y34{bottom:82.425000px;}
.y49{bottom:87.150000px;}
.y8{bottom:95.760000px;}
.y3b{bottom:99.930000px;}
.y33{bottom:102.585000px;}
.y48{bottom:104.790000px;}
.y47{bottom:111.270000px;}
.y77{bottom:118.440000px;}
.y46{bottom:127.110000px;}
.ya2{bottom:128.520000px;}
.y32{bottom:134.670000px;}
.y38{bottom:135.540000px;}
.y76{bottom:138.600000px;}
.ycb{bottom:139.500000px;}
.y45{bottom:142.590000px;}
.ya1{bottom:151.740000px;}
.y44{bottom:158.070000px;}
.y31{bottom:160.770000px;}
.y3a{bottom:162.030000px;}
.yca{bottom:165.600000px;}
.y75{bottom:167.760000px;}
.ya0{bottom:171.720000px;}
.y39{bottom:172.650000px;}
.y43{bottom:173.550000px;}
.y30{bottom:186.870000px;}
.y74{bottom:187.740000px;}
.yc9{bottom:188.640000px;}
.y42{bottom:188.850000px;}
.y9f{bottom:191.880000px;}
.y73{bottom:207.900000px;}
.yc8{bottom:208.800000px;}
.y2f{bottom:210.090000px;}
.y9e{bottom:212.070000px;}
.y72{bottom:230.970000px;}
.yc7{bottom:231.870000px;}
.y2e{bottom:233.130000px;}
.y9d{bottom:241.050000px;}
.y71{bottom:257.070000px;}
.yc6{bottom:257.970000px;}
.y2d{bottom:259.230000px;}
.y9c{bottom:261.210000px;}
.y1f{bottom:277.050000px;}
.ye8{bottom:279.930000px;}
.y70{bottom:280.290000px;}
.y9b{bottom:281.370000px;}
.yc5{bottom:284.250000px;}
.y2c{bottom:285.510000px;}
.y1e{bottom:293.070000px;}
.y9a{bottom:304.410000px;}
.y2b{bottom:308.550000px;}
.ye7{bottom:309.270000px;}
.y6f{bottom:309.450000px;}
.yc4{bottom:310.350000px;}
.y1d{bottom:317.190000px;}
.y99{bottom:327.450000px;}
.y6e{bottom:329.430000px;}
.yc3{bottom:333.390000px;}
.ye6{bottom:335.370000px;}
.y11{bottom:338.085000px;}
.y2a{bottom:340.050000px;}
.y1c{bottom:341.310000px;}
.y98{bottom:347.610000px;}
.y6d{bottom:352.470000px;}
.yc2{bottom:356.610000px;}
.ye5{bottom:361.650000px;}
.y29{bottom:363.660000px;}
.y1b{bottom:365.460000px;}
.y97{bottom:370.650000px;}
.y6c{bottom:375.690000px;}
.yc1{bottom:382.710000px;}
.y28{bottom:387.060000px;}
.ye4{bottom:387.750000px;}
.y1a{bottom:389.580000px;}
.y96{bottom:393.870000px;}
.y6b{bottom:395.850000px;}
.yc0{bottom:405.750000px;}
.y27{bottom:410.640000px;}
.ye3{bottom:410.790000px;}
.y19{bottom:413.700000px;}
.y95{bottom:414.030000px;}
.ybf{bottom:425.910000px;}
.y6a{bottom:427.890000px;}
.y26{bottom:434.220000px;}
.ye2{bottom:436.890000px;}
.y94{bottom:437.070000px;}
.y18{bottom:438.000000px;}
.ybe{bottom:448.995000px;}
.y69{bottom:454.035000px;}
.y25{bottom:457.620000px;}
.y93{bottom:460.155000px;}
.y17{bottom:462.120000px;}
.ye1{bottom:463.035000px;}
.ybd{bottom:472.215000px;}
.y68{bottom:480.135000px;}
.y24{bottom:481.200000px;}
.y92{bottom:483.375000px;}
.y16{bottom:486.240000px;}
.ye0{bottom:489.315000px;}
.ybc{bottom:495.255000px;}
.y23{bottom:504.780000px;}
.y67{bottom:506.235000px;}
.y15{bottom:510.360000px;}
.ydf{bottom:512.355000px;}
.y91{bottom:515.415000px;}
.ybb{bottom:518.475000px;}
.y22{bottom:528.180000px;}
.y66{bottom:532.515000px;}
.y14{bottom:534.480000px;}
.y90{bottom:535.575000px;}
.yba{bottom:541.515000px;}
.y21{bottom:551.760000px;}
.y8f{bottom:555.735000px;}
.y13{bottom:558.600000px;}
.y65{bottom:558.615000px;}
.yde{bottom:564.555000px;}
.yb9{bottom:567.615000px;}
.y20{bottom:575.160000px;}
.y8e{bottom:575.715000px;}
.y12{bottom:582.765000px;}
.y64{bottom:584.715000px;}
.ydd{bottom:587.775000px;}
.yb8{bottom:593.715000px;}
.y8d{bottom:598.755000px;}
.ydc{bottom:613.875000px;}
.yb7{bottom:616.935000px;}
.y63{bottom:619.815000px;}
.y8c{bottom:621.975000px;}
.yb6{bottom:639.975000px;}
.y8b{bottom:642.135000px;}
.y62{bottom:645.915000px;}
.yb5{bottom:663.195000px;}
.y8a{bottom:665.175000px;}
.y61{bottom:672.195000px;}
.yb4{bottom:683.205000px;}
.y89{bottom:688.425000px;}
.yb3{bottom:703.365000px;}
.y60{bottom:704.265000px;}
.y88{bottom:708.405000px;}
.ydb{bottom:715.245000px;}
.yb2{bottom:723.525000px;}
.y5f{bottom:727.305000px;}
.y87{bottom:731.445000px;}
.yda{bottom:741.525000px;}
.yb1{bottom:743.505000px;}
.y5e{bottom:753.585000px;}
.y86{bottom:754.665000px;}
.yb0{bottom:766.725000px;}
.yd9{bottom:767.625000px;}
.y85{bottom:774.825000px;}
.y5d{bottom:779.685000px;}
.yaf{bottom:789.765000px;}
.yd8{bottom:790.665000px;}
.y84{bottom:803.805000px;}
.y5c{bottom:805.785000px;}
.yae{bottom:809.925000px;}
.yd7{bottom:813.885000px;}
.y83{bottom:823.965000px;}
.y5b{bottom:829.005000px;}
.yad{bottom:832.965000px;}
.yd6{bottom:839.985000px;}
.y82{bottom:844.125000px;}
.y5a{bottom:852.045000px;}
.yac{bottom:856.185000px;}
.yd5{bottom:866.085000px;}
.y81{bottom:867.165000px;}
.yab{bottom:876.165000px;}
.y59{bottom:878.145000px;}
.yd4{bottom:889.305000px;}
.y80{bottom:890.385000px;}
.yaa{bottom:899.385000px;}
.y58{bottom:901.365000px;}
.y7f{bottom:910.365000px;}
.yd3{bottom:912.345000px;}
.y57{bottom:924.450000px;}
.ya9{bottom:931.470000px;}
.y7e{bottom:933.450000px;}
.yd2{bottom:935.430000px;}
.y10{bottom:943.530000px;}
.y56{bottom:947.490000px;}
.ya8{bottom:951.630000px;}
.yd1{bottom:955.590000px;}
.y7d{bottom:956.670000px;}
.yf{bottom:965.850000px;}
.y55{bottom:970.710000px;}
.ya7{bottom:971.790000px;}
.yd0{bottom:975.750000px;}
.y7c{bottom:976.830000px;}
.ya6{bottom:991.770000px;}
.ye{bottom:995.910000px;}
.y54{bottom:996.810000px;}
.ycf{bottom:998.790000px;}
.y7b{bottom:999.870000px;}
.ya5{bottom:1011.930000px;}
.yd{bottom:1018.230000px;}
.yce{bottom:1022.550000px;}
.y53{bottom:1022.910000px;}
.ya4{bottom:1031.910000px;}
.y7a{bottom:1043.070000px;}
.ycd{bottom:1047.030000px;}
.yc{bottom:1047.390000px;}
.y52{bottom:1049.010000px;}
.ya3{bottom:1052.070000px;}
.y79{bottom:1063.230000px;}
.ycc{bottom:1070.790000px;}
.y51{bottom:1075.110000px;}
.yb{bottom:1082.850000px;}
.y4e{bottom:1086.300000px;}
.y78{bottom:1095.270000px;}
.y50{bottom:1098.330000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h19{height:5.650313px;}
.h11{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h1b{height:27.540000px;}
.h16{height:29.678906px;}
.h15{height:35.332031px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.hd{height:48.229102px;}
.h17{height:52.971680px;}
.h18{height:54.421875px;}
.h5{height:55.824609px;}
.h1a{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.h12{height:60.338990px;}
.hc{height:63.349102px;}
.h1c{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h13{height:70.218281px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h14{height:201.810000px;}
.he{height:592.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:6.876000px;}
.x1c{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x17{left:14.211000px;}
.x1a{left:16.011000px;}
.x20{left:18.171000px;}
.x19{left:21.771000px;}
.x18{left:26.091000px;}
.x22{left:29.151000px;}
.x5{left:33.645000px;}
.x12{left:43.731000px;}
.x21{left:47.691000px;}
.x13{left:50.751000px;}
.x11{left:55.071000px;}
.x1d{left:62.130000px;}
.x23{left:66.225000px;}
.x15{left:73.605000px;}
.x1{left:78.300000px;}
.x16{left:83.685000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x24{left:102.765000px;}
.x1f{left:106.725000px;}
.x28{left:113.436000px;}
.x14{left:124.545000px;}
.x8{left:140.436000px;}
.x1e{left:153.390000px;}
.x3{left:182.385000px;}
.x1b{left:219.105000px;}
.x26{left:257.460000px;}
.x10{left:296.355000px;}
.x7{left:311.100000px;}
.xe{left:336.675000px;}
.xf{left:438.015000px;}
.x25{left:510.405000px;}
.xd{left:517.785000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls24{letter-spacing:-7.893333pt;}
.ls26{letter-spacing:-0.720000pt;}
.ls2b{letter-spacing:-0.674612pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.249067pt;}
.ls39{letter-spacing:-0.243200pt;}
.ls25{letter-spacing:-0.230933pt;}
.ls28{letter-spacing:-0.201067pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.094933pt;}
.ls2d{letter-spacing:-0.064000pt;}
.ls21{letter-spacing:-0.047360pt;}
.ls3a{letter-spacing:-0.023680pt;}
.ls2a{letter-spacing:-0.016865pt;}
.ls19{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016865pt;}
.ls13{letter-spacing:0.033731pt;}
.ls31{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.050596pt;}
.ls4{letter-spacing:0.059307pt;}
.ls1f{letter-spacing:0.067200pt;}
.ls30{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.084327pt;}
.ls2c{letter-spacing:0.093867pt;}
.ls17{letter-spacing:0.094080pt;}
.ls18{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.101192pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.146133pt;}
.ls34{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.231040pt;}
.ls38{letter-spacing:0.244267pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.284800pt;}
.ls36{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.303360pt;}
.ls3{letter-spacing:0.307733pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.334933pt;}
.ls37{letter-spacing:0.342400pt;}
.ls1e{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls27{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.708343pt;}
.ls2{letter-spacing:0.752640pt;}
.lse{letter-spacing:0.775804pt;}
.ls3f{letter-spacing:0.885333pt;}
.ls11{letter-spacing:1.450417pt;}
.ls5{letter-spacing:2.799642pt;}
.ls6{letter-spacing:2.968295pt;}
.ls3b{letter-spacing:3.152640pt;}
.ls15{letter-spacing:4.148867pt;}
.lsb{letter-spacing:4.823479pt;}
.lsa{letter-spacing:5.498092pt;}
.lsc{letter-spacing:5.610527pt;}
.ls7{letter-spacing:12.244217pt;}
.ls9{letter-spacing:12.356652pt;}
.ls8{letter-spacing:12.918829pt;}
.ls12{letter-spacing:13.593442pt;}
.ls3e{letter-spacing:37.072640pt;}
.ls3d{letter-spacing:49.232640pt;}
.ls35{letter-spacing:56.912640pt;}
.ws3{word-spacing:-74.880000pt;}
.wsb{word-spacing:-53.454933pt;}
.ws9{word-spacing:-53.427733pt;}
.wsa{word-spacing:-53.404800pt;}
.ws4{word-spacing:-53.266133pt;}
.ws7{word-spacing:-53.187200pt;}
.ws5{word-spacing:-53.120000pt;}
.wsd{word-spacing:-52.889067pt;}
.ws8{word-spacing:-52.870933pt;}
.ws12{word-spacing:-51.304280pt;}
.ws15{word-spacing:-50.680263pt;}
.ws14{word-spacing:-50.646533pt;}
.ws17{word-spacing:-50.629667pt;}
.ws11{word-spacing:-50.595937pt;}
.ws13{word-spacing:-50.579071pt;}
.ws16{word-spacing:-49.921324pt;}
.ws1f{word-spacing:-48.176000pt;}
.ws1d{word-spacing:-48.080000pt;}
.ws1e{word-spacing:-48.048000pt;}
.ws1c{word-spacing:-48.000000pt;}
.ws1b{word-spacing:-47.808000pt;}
.wsc{word-spacing:-29.671040pt;}
.ws26{word-spacing:-15.652693pt;}
.ws25{word-spacing:-15.052160pt;}
.ws22{word-spacing:-15.011627pt;}
.ws18{word-spacing:-14.767360pt;}
.ws24{word-spacing:-14.743680pt;}
.ws1{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.672427pt;}
.ws23{word-spacing:-14.524160pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws1a{word-spacing:-11.904000pt;}
.ws20{word-spacing:-11.680000pt;}
.wse{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.607680pt;}
.ws10{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.078933pt;}
.ws19{word-spacing:-7.936000pt;}
.ws21{word-spacing:0.000000pt;}
._3{margin-left:-8.134613pt;}
._9{margin-left:-6.931643pt;}
._b{margin-left:-3.879022pt;}
._6{margin-left:-2.580393pt;}
._0{margin-left:-1.264000pt;}
._1{width:1.011200pt;}
._2{width:2.482347pt;}
._13{width:3.391147pt;}
._7{width:4.435577pt;}
._8{width:5.425727pt;}
._11{width:6.370953pt;}
._a{width:7.387007pt;}
._4{width:8.295040pt;}
._f{width:9.459200pt;}
._14{width:10.360686pt;}
._5{width:11.384625pt;}
._c{width:13.083118pt;}
._15{width:17.317120pt;}
._e{width:19.229440pt;}
._d{width:20.561280pt;}
._10{width:21.693740pt;}
._12{width:22.668627pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs9{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y41{bottom:2.400000pt;}
.y4d{bottom:3.200000pt;}
.y4f{bottom:4.453333pt;}
.y37{bottom:6.226667pt;}
.y40{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4c{bottom:19.840000pt;}
.y4{bottom:28.800000pt;}
.y36{bottom:29.426667pt;}
.y3f{bottom:35.840000pt;}
.y4b{bottom:39.680000pt;}
.y3e{bottom:46.240000pt;}
.y3{bottom:49.306667pt;}
.ya{bottom:51.200000pt;}
.y35{bottom:52.626667pt;}
.y4a{bottom:56.640000pt;}
.y3d{bottom:57.760000pt;}
.y9{bottom:67.360000pt;}
.y3c{bottom:69.306667pt;}
.y34{bottom:73.266667pt;}
.y49{bottom:77.466667pt;}
.y8{bottom:85.120000pt;}
.y3b{bottom:88.826667pt;}
.y33{bottom:91.186667pt;}
.y48{bottom:93.146667pt;}
.y47{bottom:98.906667pt;}
.y77{bottom:105.280000pt;}
.y46{bottom:112.986667pt;}
.ya2{bottom:114.240000pt;}
.y32{bottom:119.706667pt;}
.y38{bottom:120.480000pt;}
.y76{bottom:123.200000pt;}
.ycb{bottom:124.000000pt;}
.y45{bottom:126.746667pt;}
.ya1{bottom:134.880000pt;}
.y44{bottom:140.506667pt;}
.y31{bottom:142.906667pt;}
.y3a{bottom:144.026667pt;}
.yca{bottom:147.200000pt;}
.y75{bottom:149.120000pt;}
.ya0{bottom:152.640000pt;}
.y39{bottom:153.466667pt;}
.y43{bottom:154.266667pt;}
.y30{bottom:166.106667pt;}
.y74{bottom:166.880000pt;}
.yc9{bottom:167.680000pt;}
.y42{bottom:167.866667pt;}
.y9f{bottom:170.560000pt;}
.y73{bottom:184.800000pt;}
.yc8{bottom:185.600000pt;}
.y2f{bottom:186.746667pt;}
.y9e{bottom:188.506667pt;}
.y72{bottom:205.306667pt;}
.yc7{bottom:206.106667pt;}
.y2e{bottom:207.226667pt;}
.y9d{bottom:214.266667pt;}
.y71{bottom:228.506667pt;}
.yc6{bottom:229.306667pt;}
.y2d{bottom:230.426667pt;}
.y9c{bottom:232.186667pt;}
.y1f{bottom:246.266667pt;}
.ye8{bottom:248.826667pt;}
.y70{bottom:249.146667pt;}
.y9b{bottom:250.106667pt;}
.yc5{bottom:252.666667pt;}
.y2c{bottom:253.786667pt;}
.y1e{bottom:260.506667pt;}
.y9a{bottom:270.586667pt;}
.y2b{bottom:274.266667pt;}
.ye7{bottom:274.906667pt;}
.y6f{bottom:275.066667pt;}
.yc4{bottom:275.866667pt;}
.y1d{bottom:281.946667pt;}
.y99{bottom:291.066667pt;}
.y6e{bottom:292.826667pt;}
.yc3{bottom:296.346667pt;}
.ye6{bottom:298.106667pt;}
.y11{bottom:300.520000pt;}
.y2a{bottom:302.266667pt;}
.y1c{bottom:303.386667pt;}
.y98{bottom:308.986667pt;}
.y6d{bottom:313.306667pt;}
.yc2{bottom:316.986667pt;}
.ye5{bottom:321.466667pt;}
.y29{bottom:323.253333pt;}
.y1b{bottom:324.853333pt;}
.y97{bottom:329.466667pt;}
.y6c{bottom:333.946667pt;}
.yc1{bottom:340.186667pt;}
.y28{bottom:344.053333pt;}
.ye4{bottom:344.666667pt;}
.y1a{bottom:346.293333pt;}
.y96{bottom:350.106667pt;}
.y6b{bottom:351.866667pt;}
.yc0{bottom:360.666667pt;}
.y27{bottom:365.013333pt;}
.ye3{bottom:365.146667pt;}
.y19{bottom:367.733333pt;}
.y95{bottom:368.026667pt;}
.ybf{bottom:378.586667pt;}
.y6a{bottom:380.346667pt;}
.y26{bottom:385.973333pt;}
.ye2{bottom:388.346667pt;}
.y94{bottom:388.506667pt;}
.y18{bottom:389.333333pt;}
.ybe{bottom:399.106667pt;}
.y69{bottom:403.586667pt;}
.y25{bottom:406.773333pt;}
.y93{bottom:409.026667pt;}
.y17{bottom:410.773333pt;}
.ye1{bottom:411.586667pt;}
.ybd{bottom:419.746667pt;}
.y68{bottom:426.786667pt;}
.y24{bottom:427.733333pt;}
.y92{bottom:429.666667pt;}
.y16{bottom:432.213333pt;}
.ye0{bottom:434.946667pt;}
.ybc{bottom:440.226667pt;}
.y23{bottom:448.693333pt;}
.y67{bottom:449.986667pt;}
.y15{bottom:453.653333pt;}
.ydf{bottom:455.426667pt;}
.y91{bottom:458.146667pt;}
.ybb{bottom:460.866667pt;}
.y22{bottom:469.493333pt;}
.y66{bottom:473.346667pt;}
.y14{bottom:475.093333pt;}
.y90{bottom:476.066667pt;}
.yba{bottom:481.346667pt;}
.y21{bottom:490.453333pt;}
.y8f{bottom:493.986667pt;}
.y13{bottom:496.533333pt;}
.y65{bottom:496.546667pt;}
.yde{bottom:501.826667pt;}
.yb9{bottom:504.546667pt;}
.y20{bottom:511.253333pt;}
.y8e{bottom:511.746667pt;}
.y12{bottom:518.013333pt;}
.y64{bottom:519.746667pt;}
.ydd{bottom:522.466667pt;}
.yb8{bottom:527.746667pt;}
.y8d{bottom:532.226667pt;}
.ydc{bottom:545.666667pt;}
.yb7{bottom:548.386667pt;}
.y63{bottom:550.946667pt;}
.y8c{bottom:552.866667pt;}
.yb6{bottom:568.866667pt;}
.y8b{bottom:570.786667pt;}
.y62{bottom:574.146667pt;}
.yb5{bottom:589.506667pt;}
.y8a{bottom:591.266667pt;}
.y61{bottom:597.506667pt;}
.yb4{bottom:607.293333pt;}
.y89{bottom:611.933333pt;}
.yb3{bottom:625.213333pt;}
.y60{bottom:626.013333pt;}
.y88{bottom:629.693333pt;}
.ydb{bottom:635.773333pt;}
.yb2{bottom:643.133333pt;}
.y5f{bottom:646.493333pt;}
.y87{bottom:650.173333pt;}
.yda{bottom:659.133333pt;}
.yb1{bottom:660.893333pt;}
.y5e{bottom:669.853333pt;}
.y86{bottom:670.813333pt;}
.yb0{bottom:681.533333pt;}
.yd9{bottom:682.333333pt;}
.y85{bottom:688.733333pt;}
.y5d{bottom:693.053333pt;}
.yaf{bottom:702.013333pt;}
.yd8{bottom:702.813333pt;}
.y84{bottom:714.493333pt;}
.y5c{bottom:716.253333pt;}
.yae{bottom:719.933333pt;}
.yd7{bottom:723.453333pt;}
.y83{bottom:732.413333pt;}
.y5b{bottom:736.893333pt;}
.yad{bottom:740.413333pt;}
.yd6{bottom:746.653333pt;}
.y82{bottom:750.333333pt;}
.y5a{bottom:757.373333pt;}
.yac{bottom:761.053333pt;}
.yd5{bottom:769.853333pt;}
.y81{bottom:770.813333pt;}
.yab{bottom:778.813333pt;}
.y59{bottom:780.573333pt;}
.yd4{bottom:790.493333pt;}
.y80{bottom:791.453333pt;}
.yaa{bottom:799.453333pt;}
.y58{bottom:801.213333pt;}
.y7f{bottom:809.213333pt;}
.yd3{bottom:810.973333pt;}
.y57{bottom:821.733333pt;}
.ya9{bottom:827.973333pt;}
.y7e{bottom:829.733333pt;}
.yd2{bottom:831.493333pt;}
.y10{bottom:838.693333pt;}
.y56{bottom:842.213333pt;}
.ya8{bottom:845.893333pt;}
.yd1{bottom:849.413333pt;}
.y7d{bottom:850.373333pt;}
.yf{bottom:858.533333pt;}
.y55{bottom:862.853333pt;}
.ya7{bottom:863.813333pt;}
.yd0{bottom:867.333333pt;}
.y7c{bottom:868.293333pt;}
.ya6{bottom:881.573333pt;}
.ye{bottom:885.253333pt;}
.y54{bottom:886.053333pt;}
.ycf{bottom:887.813333pt;}
.y7b{bottom:888.773333pt;}
.ya5{bottom:899.493333pt;}
.yd{bottom:905.093333pt;}
.yce{bottom:908.933333pt;}
.y53{bottom:909.253333pt;}
.ya4{bottom:917.253333pt;}
.y7a{bottom:927.173333pt;}
.ycd{bottom:930.693333pt;}
.yc{bottom:931.013333pt;}
.y52{bottom:932.453333pt;}
.ya3{bottom:935.173333pt;}
.y79{bottom:945.093333pt;}
.ycc{bottom:951.813333pt;}
.y51{bottom:955.653333pt;}
.yb{bottom:962.533333pt;}
.y4e{bottom:965.600000pt;}
.y78{bottom:973.573333pt;}
.y50{bottom:976.293333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h19{height:5.022500pt;}
.h11{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h1b{height:24.480000pt;}
.h16{height:26.381250pt;}
.h15{height:31.406250pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.hd{height:42.870313pt;}
.h17{height:47.085938pt;}
.h18{height:48.375000pt;}
.h5{height:49.621875pt;}
.h1a{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.h12{height:53.634657pt;}
.hc{height:56.310313pt;}
.h1c{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h13{height:62.416250pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h14{height:179.386667pt;}
.he{height:526.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.112000pt;}
.x1c{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x17{left:12.632000pt;}
.x1a{left:14.232000pt;}
.x20{left:16.152000pt;}
.x19{left:19.352000pt;}
.x18{left:23.192000pt;}
.x22{left:25.912000pt;}
.x5{left:29.906667pt;}
.x12{left:38.872000pt;}
.x21{left:42.392000pt;}
.x13{left:45.112000pt;}
.x11{left:48.952000pt;}
.x1d{left:55.226667pt;}
.x23{left:58.866667pt;}
.x15{left:65.426667pt;}
.x1{left:69.600000pt;}
.x16{left:74.386667pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x24{left:91.346667pt;}
.x1f{left:94.866667pt;}
.x28{left:100.832000pt;}
.x14{left:110.706667pt;}
.x8{left:124.832000pt;}
.x1e{left:136.346667pt;}
.x3{left:162.120000pt;}
.x1b{left:194.760000pt;}
.x26{left:228.853333pt;}
.x10{left:263.426667pt;}
.x7{left:276.533333pt;}
.xe{left:299.266667pt;}
.xf{left:389.346667pt;}
.x25{left:453.693333pt;}
.xd{left:460.253333pt;}
.xb{left:680.933333pt;}
.xa{left:703.973333pt;}
.x9{left:717.280000pt;}
}




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