
    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_cbea6afb3e3f5441a36ccec3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ce2e4438f3c558a972c09625.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_0fe5a6eaf7708bc432e2103c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_b9393f85cb8c9a79ebbf22a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_5ccfcea57c968a531f61f979.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_68ba94bd0b5d4f9f6661c63d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_71e735c67d8a68c60a2dcb56.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_eb13a9cb7432421b886ec8a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_c7b9747f6a2f7848628e9602.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6415540a406655af028e5c7e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c5f86b8241f4650080754c69.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e0ee2c0ac7fa6760088d7cf9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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:fff;src:url('chunks/assets/font_9baf62b705d43c8c02eb1fc7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_67226a8004509d5ce1ecee26.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c5809b6751de533781287c80.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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:ff12;src:url('chunks/assets/font_4fd441bd062c6b2edb5dcf78.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v3{vertical-align:-69.840000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-4.680000px;}
.ls9{letter-spacing:-3.960000px;}
.ls15{letter-spacing:-1.080000px;}
.ls30{letter-spacing:-0.513600px;}
.ls16{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.206400px;}
.ls2e{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls12{letter-spacing:-0.004320px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls2b{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.250560px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls2d{letter-spacing:0.466800px;}
.ls10{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.627840px;}
.lsa{letter-spacing:0.666000px;}
.ls2f{letter-spacing:0.774000px;}
.ls11{letter-spacing:0.924000px;}
.lse{letter-spacing:15.276000px;}
.ls38{letter-spacing:15.786720px;}
.ls1b{letter-spacing:43.866720px;}
.lsd{letter-spacing:45.306720px;}
.ls35{letter-spacing:63.450720px;}
.ls26{letter-spacing:164.484000px;}
.ls28{letter-spacing:231.444000px;}
.ls34{letter-spacing:585.660000px;}
.ls23{letter-spacing:685.740000px;}
.ls31{letter-spacing:859.440000px;}
.ls2a{letter-spacing:899.760000px;}
.ls2c{letter-spacing:932.880000px;}
.ls24{letter-spacing:938.640000px;}
.ls33{letter-spacing:965.280000px;}
.ls27{letter-spacing:1016.400000px;}
.ls32{letter-spacing:1028.640000px;}
.ls1d{letter-spacing:1046.640000px;}
.ls29{letter-spacing:1049.520000px;}
.ls22{letter-spacing:1115.040000px;}
.ls20{letter-spacing:1140.960000px;}
.ls19{letter-spacing:1153.200000px;}
.ls1c{letter-spacing:1159.680000px;}
.ls1e{letter-spacing:1179.840000px;}
.ls37{letter-spacing:1245.360000px;}
.ls1f{letter-spacing:1255.440000px;}
.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;}
}
.ws4{word-spacing:-84.240000px;}
.ws1b{word-spacing:-59.760000px;}
.ws0{word-spacing:-54.000000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.864000px;}
.ws19{word-spacing:-15.714000px;}
.wsb{word-spacing:-15.606000px;}
.ws15{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.406800px;}
.ws7{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.479800px;}
.ws1a{word-spacing:-14.426400px;}
.wsd{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.204000px;}
.ws9{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.260000px;}
.ws10{word-spacing:-9.715680px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._5{margin-left:-5.587920px;}
._4{margin-left:-4.288080px;}
._3{margin-left:-2.406000px;}
._0{margin-left:-1.014000px;}
._1{width:1.182000px;}
._14{width:2.393280px;}
._6{width:3.441840px;}
._15{width:4.601280px;}
._2{width:5.658000px;}
._10{width:7.081680px;}
._f{width:8.908800px;}
._13{width:10.052880px;}
._a{width:11.327520px;}
._9{width:12.397200px;}
._d{width:13.596000px;}
._e{width:16.937040px;}
._16{width:18.032160px;}
._b{width:19.074720px;}
._c{width:20.127840px;}
._24{width:21.155040px;}
._8{width:22.696560px;}
._7{width:24.185040px;}
._1e{width:26.835360px;}
._22{width:27.921120px;}
._1a{width:29.162880px;}
._12{width:33.284400px;}
._11{width:34.302240px;}
._25{width:36.035280px;}
._18{width:38.485440px;}
._1b{width:43.624800px;}
._20{width:49.660560px;}
._1d{width:55.696320px;}
._17{width:63.119760px;}
._23{width:128.258160px;}
._21{width:138.463920px;}
._1f{width:203.243760px;}
._19{width:268.860240px;}
._1c{width:434.813760px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs9{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y4b{bottom:3.780000px;}
.y103{bottom:3.825000px;}
.ye{bottom:4.140000px;}
.y1a{bottom:4.860000px;}
.ye4{bottom:5.220000px;}
.ye7{bottom:5.400000px;}
.yf0{bottom:7.020000px;}
.yf3{bottom:7.194000px;}
.yed{bottom:7.200000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.yf9{bottom:14.610000px;}
.y4f{bottom:15.120000px;}
.y4{bottom:17.496000px;}
.y4d{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.yaf{bottom:20.880000px;}
.ybc{bottom:20.910000px;}
.y4a{bottom:21.060000px;}
.y102{bottom:21.105000px;}
.yc0{bottom:23.220000px;}
.y19{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.yeb{bottom:33.300000px;}
.y5{bottom:33.660000px;}
.yca{bottom:34.380000px;}
.y49{bottom:38.340000px;}
.y18{bottom:45.945000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.540000px;}
.y48{bottom:55.440000px;}
.y100{bottom:55.620000px;}
.y17{bottom:62.505000px;}
.y47{bottom:72.720000px;}
.y9{bottom:73.260000px;}
.yc4{bottom:75.600000px;}
.y16{bottom:79.065000px;}
.y46{bottom:90.000000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.725000px;}
.yf6{bottom:99.936000px;}
.y54{bottom:100.836000px;}
.y14{bottom:105.345000px;}
.y45{bottom:107.280000px;}
.y7{bottom:111.450000px;}
.yb9{bottom:112.716000px;}
.y127{bottom:114.336000px;}
.yf5{bottom:117.216000px;}
.y53{bottom:118.116000px;}
.y13{bottom:123.525000px;}
.yff{bottom:124.560000px;}
.y44{bottom:124.605000px;}
.y126{bottom:132.516000px;}
.yf4{bottom:134.496000px;}
.y52{bottom:135.396000px;}
.yfe{bottom:141.840000px;}
.y43{bottom:141.885000px;}
.y12{bottom:142.065000px;}
.y90{bottom:146.196000px;}
.yf2{bottom:148.716000px;}
.y125{bottom:150.870000px;}
.yb8{bottom:151.770000px;}
.y51{bottom:152.130000px;}
.y42{bottom:158.985000px;}
.y8f{bottom:163.830000px;}
.yb7{bottom:165.990000px;}
.y11{bottom:167.805000px;}
.y124{bottom:169.230000px;}
.y50{bottom:169.770000px;}
.yf1{bottom:170.130000px;}
.y41{bottom:176.265000px;}
.y8e{bottom:180.930000px;}
.y4c{bottom:183.270000px;}
.y123{bottom:187.590000px;}
.yef{bottom:191.550000px;}
.y10{bottom:192.465000px;}
.y40{bottom:193.545000px;}
.y8d{bottom:198.210000px;}
.y122{bottom:204.870000px;}
.y3f{bottom:210.825000px;}
.y1d{bottom:212.610000px;}
.yee{bottom:212.790000px;}
.y8c{bottom:215.490000px;}
.yb6{bottom:218.550000px;}
.y121{bottom:221.970000px;}
.y3e{bottom:228.105000px;}
.y8b{bottom:232.770000px;}
.yec{bottom:234.210000px;}
.yb5{bottom:236.550000px;}
.y120{bottom:239.250000px;}
.y3d{bottom:245.205000px;}
.y8a{bottom:250.050000px;}
.yb4{bottom:254.550000px;}
.yea{bottom:255.630000px;}
.y11f{bottom:256.530000px;}
.y3c{bottom:262.485000px;}
.y89{bottom:267.330000px;}
.yb3{bottom:272.550000px;}
.y11e{bottom:273.810000px;}
.y3b{bottom:279.765000px;}
.y88{bottom:284.430000px;}
.y11d{bottom:291.090000px;}
.y3a{bottom:297.045000px;}
.y87{bottom:301.710000px;}
.y11c{bottom:309.450000px;}
.yb2{bottom:311.430000px;}
.y39{bottom:314.325000px;}
.y86{bottom:318.990000px;}
.ye9{bottom:324.210000px;}
.yb1{bottom:325.830000px;}
.y11b{bottom:326.550000px;}
.y38{bottom:331.605000px;}
.y85{bottom:336.270000px;}
.ye6{bottom:338.475000px;}
.ye8{bottom:339.375000px;}
.yb0{bottom:343.875000px;}
.y37{bottom:348.345000px;}
.y84{bottom:353.595000px;}
.ye3{bottom:358.095000px;}
.ye5{bottom:358.815000px;}
.y11a{bottom:361.155000px;}
.yae{bottom:361.875000px;}
.y36{bottom:365.985000px;}
.y83{bottom:370.875000px;}
.y29{bottom:371.025000px;}
.ye2{bottom:377.535000px;}
.y119{bottom:378.435000px;}
.y35{bottom:383.265000px;}
.y82{bottom:387.975000px;}
.y28{bottom:388.305000px;}
.y118{bottom:395.715000px;}
.y34{bottom:400.575000px;}
.y81{bottom:405.255000px;}
.y27{bottom:405.435000px;}
.y117{bottom:414.075000px;}
.y33{bottom:417.855000px;}
.yad{bottom:418.035000px;}
.y80{bottom:422.535000px;}
.y26{bottom:422.895000px;}
.y116{bottom:431.175000px;}
.yac{bottom:432.255000px;}
.ye1{bottom:433.875000px;}
.y32{bottom:435.135000px;}
.y7f{bottom:439.815000px;}
.y25{bottom:440.355000px;}
.y115{bottom:448.455000px;}
.ye0{bottom:450.975000px;}
.y31{bottom:452.235000px;}
.y7e{bottom:457.095000px;}
.y24{bottom:457.635000px;}
.y114{bottom:465.735000px;}
.yab{bottom:467.535000px;}
.ydf{bottom:468.255000px;}
.y30{bottom:469.515000px;}
.y7d{bottom:474.195000px;}
.y23{bottom:475.095000px;}
.y113{bottom:483.015000px;}
.yde{bottom:485.535000px;}
.y2f{bottom:486.795000px;}
.y7c{bottom:491.475000px;}
.y22{bottom:492.555000px;}
.y112{bottom:499.935000px;}
.yaa{bottom:502.815000px;}
.y2e{bottom:504.075000px;}
.y7b{bottom:508.755000px;}
.y21{bottom:509.835000px;}
.y111{bottom:517.395000px;}
.ydd{bottom:520.095000px;}
.ya9{bottom:520.815000px;}
.y2d{bottom:521.355000px;}
.y7a{bottom:526.035000px;}
.y20{bottom:530.175000px;}
.y110{bottom:531.795000px;}
.ydc{bottom:537.195000px;}
.y2c{bottom:538.455000px;}
.ya8{bottom:538.815000px;}
.y14b{bottom:540.075000px;}
.y79{bottom:543.315000px;}
.y10f{bottom:549.795000px;}
.ydb{bottom:554.475000px;}
.y2b{bottom:555.735000px;}
.ya7{bottom:556.815000px;}
.y14a{bottom:557.355000px;}
.y1f{bottom:557.715000px;}
.y78{bottom:560.595000px;}
.y10e{bottom:567.795000px;}
.yda{bottom:568.695000px;}
.y2a{bottom:573.015000px;}
.y149{bottom:574.455000px;}
.y1e{bottom:575.175000px;}
.y77{bottom:577.695000px;}
.yd9{bottom:586.695000px;}
.y148{bottom:591.735000px;}
.y76{bottom:594.975000px;}
.ya6{bottom:595.695000px;}
.yd8{bottom:604.725000px;}
.y10d{bottom:606.705000px;}
.y147{bottom:609.045000px;}
.ya5{bottom:610.125000px;}
.y75{bottom:612.285000px;}
.y10c{bottom:620.925000px;}
.yd7{bottom:622.725000px;}
.y146{bottom:626.325000px;}
.ya4{bottom:628.125000px;}
.y74{bottom:629.205000px;}
.y10b{bottom:638.925000px;}
.yd6{bottom:640.725000px;}
.y145{bottom:643.605000px;}
.ya3{bottom:646.125000px;}
.y73{bottom:646.845000px;}
.y10a{bottom:656.925000px;}
.yd5{bottom:658.725000px;}
.y144{bottom:660.885000px;}
.y72{bottom:664.125000px;}
.yd4{bottom:676.725000px;}
.y143{bottom:677.985000px;}
.y71{bottom:681.225000px;}
.ya2{bottom:682.125000px;}
.y142{bottom:695.265000px;}
.y70{bottom:698.505000px;}
.y141{bottom:712.545000px;}
.y6f{bottom:715.785000px;}
.ya1{bottom:721.005000px;}
.y140{bottom:729.825000px;}
.yd3{bottom:730.005000px;}
.y109{bottom:730.545000px;}
.y6e{bottom:733.065000px;}
.ya0{bottom:735.225000px;}
.y108{bottom:744.765000px;}
.y13f{bottom:747.105000px;}
.y6d{bottom:750.345000px;}
.y9f{bottom:753.225000px;}
.y107{bottom:762.765000px;}
.y13e{bottom:764.385000px;}
.yd2{bottom:765.285000px;}
.y6c{bottom:767.625000px;}
.y9e{bottom:771.225000px;}
.y106{bottom:780.765000px;}
.y13d{bottom:781.485000px;}
.yd1{bottom:783.285000px;}
.y6b{bottom:784.725000px;}
.y13c{bottom:798.765000px;}
.y1b{bottom:799.125000px;}
.yd0{bottom:801.285000px;}
.y6a{bottom:801.645000px;}
.y9d{bottom:810.285000px;}
.y69{bottom:819.285000px;}
.y105{bottom:819.645000px;}
.y9c{bottom:824.505000px;}
.yf{bottom:828.645000px;}
.y13b{bottom:833.325000px;}
.y104{bottom:834.045000px;}
.y68{bottom:836.565000px;}
.ycf{bottom:840.345000px;}
.y9b{bottom:842.505000px;}
.y13a{bottom:850.605000px;}
.y67{bottom:853.845000px;}
.yce{bottom:854.565000px;}
.y9a{bottom:860.505000px;}
.y139{bottom:867.885000px;}
.y101{bottom:869.145000px;}
.y66{bottom:870.990000px;}
.ycd{bottom:872.610000px;}
.y138{bottom:885.030000px;}
.y65{bottom:888.270000px;}
.ycc{bottom:890.610000px;}
.y99{bottom:899.610000px;}
.y137{bottom:902.310000px;}
.yfd{bottom:904.470000px;}
.y64{bottom:905.550000px;}
.y98{bottom:913.830000px;}
.y136{bottom:919.590000px;}
.y63{bottom:922.830000px;}
.ycb{bottom:929.490000px;}
.y97{bottom:931.830000px;}
.y135{bottom:936.870000px;}
.y62{bottom:939.750000px;}
.yc3{bottom:943.890000px;}
.yc7{bottom:944.610000px;}
.y96{bottom:949.830000px;}
.y134{bottom:954.150000px;}
.y61{bottom:957.390000px;}
.y133{bottom:971.250000px;}
.y60{bottom:974.490000px;}
.yc9{bottom:978.990000px;}
.yc6{bottom:979.890000px;}
.y132{bottom:988.530000px;}
.y95{bottom:988.890000px;}
.y5f{bottom:991.770000px;}
.yc8{bottom:996.990000px;}
.y94{bottom:1003.110000px;}
.y131{bottom:1005.810000px;}
.y5e{bottom:1009.050000px;}
.yc5{bottom:1014.990000px;}
.y93{bottom:1021.110000px;}
.y130{bottom:1022.730000px;}
.y5d{bottom:1026.330000px;}
.ybf{bottom:1033.890000px;}
.yc2{bottom:1034.610000px;}
.yd{bottom:1036.410000px;}
.y92{bottom:1039.110000px;}
.y12f{bottom:1040.370000px;}
.y5c{bottom:1043.610000px;}
.yc1{bottom:1052.610000px;}
.y6{bottom:1056.390000px;}
.y12e{bottom:1057.650000px;}
.y5b{bottom:1060.530000px;}
.ybe{bottom:1071.330000px;}
.y12d{bottom:1074.750000px;}
.y5a{bottom:1077.990000px;}
.yfc{bottom:1081.590000px;}
.y12c{bottom:1092.030000px;}
.y91{bottom:1094.910000px;}
.y59{bottom:1095.270000px;}
.yfb{bottom:1095.810000px;}
.y12b{bottom:1109.310000px;}
.ybd{bottom:1110.390000px;}
.y58{bottom:1112.550000px;}
.yfa{bottom:1113.810000px;}
.ybb{bottom:1124.610000px;}
.y12a{bottom:1126.590000px;}
.y57{bottom:1129.830000px;}
.yf8{bottom:1131.810000px;}
.y129{bottom:1144.980000px;}
.y56{bottom:1147.140000px;}
.yba{bottom:1159.920000px;}
.y128{bottom:1163.340000px;}
.yf7{bottom:1164.060000px;}
.y55{bottom:1164.420000px;}
.h2b{height:2.826563px;}
.h24{height:17.100000px;}
.h27{height:17.136000px;}
.h22{height:17.280000px;}
.h23{height:17.316000px;}
.h2d{height:18.720000px;}
.h2e{height:18.900000px;}
.hc{height:19.440000px;}
.h31{height:20.520000px;}
.h30{height:20.700000px;}
.h32{height:28.116000px;}
.h13{height:28.968750px;}
.h1d{height:29.340000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h26{height:34.380000px;}
.h29{height:34.416000px;}
.h25{height:34.560000px;}
.h34{height:34.596000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h2a{height:36.720000px;}
.h1e{height:38.818125px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h2f{height:46.800000px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h28{height:51.840000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h1a{height:58.621992px;}
.h1c{height:58.651172px;}
.h21{height:59.038594px;}
.h10{height:59.439023px;}
.h1b{height:60.226875px;}
.h11{height:61.189805px;}
.h20{height:61.423863px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h2c{height:89.100000px;}
.h7{height:121.536000px;}
.h33{height:155.340000px;}
.hd{height:207.750000px;}
.h16{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:56.160000px;}
.w27{width:67.500000px;}
.w26{width:71.496000px;}
.w3{width:74.880000px;}
.w28{width:84.996000px;}
.w23{width:85.140000px;}
.w16{width:85.536000px;}
.w22{width:94.716000px;}
.w24{width:99.216000px;}
.w19{width:103.896000px;}
.w1a{width:110.340000px;}
.w1b{width:110.376000px;}
.w25{width:110.880000px;}
.w18{width:117.180000px;}
.w29{width:127.440000px;}
.w21{width:132.300000px;}
.w15{width:135.540000px;}
.w12{width:142.920000px;}
.w11{width:142.956000px;}
.w1e{width:148.500000px;}
.wb{width:148.680000px;}
.wa{width:148.716000px;}
.w5{width:155.370000px;}
.w20{width:180.030000px;}
.w8{width:210.135000px;}
.w17{width:221.430000px;}
.w14{width:238.710000px;}
.w13{width:238.755000px;}
.w1c{width:241.455000px;}
.w10{width:247.710000px;}
.we{width:248.250000px;}
.wd{width:248.430000px;}
.wc{width:248.475000px;}
.wf{width:249.735000px;}
.w1f{width:432.645000px;}
.w9{width:537.195000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1c{left:-19.305000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x2{left:8.640000px;}
.x15{left:12.600000px;}
.xd{left:20.736000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x16{left:107.855987px;}
.xf{left:117.930000px;}
.x10{left:145.830000px;}
.x2f{left:168.690000px;}
.x11{left:185.790000px;}
.x13{left:198.210000px;}
.x12{left:207.255000px;}
.xe{left:215.715000px;}
.x20{left:216.930000px;}
.x17{left:222.870000px;}
.x6{left:228.270000px;}
.x30{left:254.550000px;}
.x14{left:283.035000px;}
.x9{left:285.015000px;}
.x24{left:312.735000px;}
.x2b{left:315.615000px;}
.x26{left:321.195000px;}
.x1d{left:322.455000px;}
.x1f{left:323.715000px;}
.x7{left:342.975000px;}
.x31{left:354.495000px;}
.x2c{left:358.994987px;}
.x21{left:360.615000px;}
.x8{left:364.215000px;}
.xb{left:366.555000px;}
.x19{left:372.315000px;}
.xc{left:373.575000px;}
.x2a{left:432.255000px;}
.x29{left:439.095000px;}
.xa{left:452.280000px;}
.x27{left:457.455000px;}
.x32{left:466.095000px;}
.x22{left:504.285000px;}
.x2d{left:506.805000px;}
.x1a{left:521.745000px;}
.x33{left:538.305000px;}
.x25{left:552.165000px;}
.x28{left:560.625000px;}
.x1e{left:571.605000px;}
.x34{left:606.705000px;}
.x23{left:647.925000px;}
.x1b{left:671.190000px;}
.x2e{left:687.570000px;}
.x35{left:692.430000px;}
.x3{left:745.890000px;}
@media print{
.v3{vertical-align:-62.080000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-4.160000pt;}
.ls9{letter-spacing:-3.520000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls30{letter-spacing:-0.456533pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls2e{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls12{letter-spacing:-0.003840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls2b{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.222720pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls2d{letter-spacing:0.414933pt;}
.ls10{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.558080pt;}
.lsa{letter-spacing:0.592000pt;}
.ls2f{letter-spacing:0.688000pt;}
.ls11{letter-spacing:0.821333pt;}
.lse{letter-spacing:13.578667pt;}
.ls38{letter-spacing:14.032640pt;}
.ls1b{letter-spacing:38.992640pt;}
.lsd{letter-spacing:40.272640pt;}
.ls35{letter-spacing:56.400640pt;}
.ls26{letter-spacing:146.208000pt;}
.ls28{letter-spacing:205.728000pt;}
.ls34{letter-spacing:520.586667pt;}
.ls23{letter-spacing:609.546667pt;}
.ls31{letter-spacing:763.946667pt;}
.ls2a{letter-spacing:799.786667pt;}
.ls2c{letter-spacing:829.226667pt;}
.ls24{letter-spacing:834.346667pt;}
.ls33{letter-spacing:858.026667pt;}
.ls27{letter-spacing:903.466667pt;}
.ls32{letter-spacing:914.346667pt;}
.ls1d{letter-spacing:930.346667pt;}
.ls29{letter-spacing:932.906667pt;}
.ls22{letter-spacing:991.146667pt;}
.ls20{letter-spacing:1014.186667pt;}
.ls19{letter-spacing:1025.066667pt;}
.ls1c{letter-spacing:1030.826667pt;}
.ls1e{letter-spacing:1048.746667pt;}
.ls37{letter-spacing:1106.986667pt;}
.ls1f{letter-spacing:1115.946667pt;}
.ws4{word-spacing:-74.880000pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsf{word-spacing:-14.101333pt;}
.ws19{word-spacing:-13.968000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws15{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.694933pt;}
.ws7{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws17{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.870933pt;}
.ws1a{word-spacing:-12.823467pt;}
.wsd{word-spacing:-12.005120pt;}
.ws1{word-spacing:-10.848000pt;}
.ws9{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.120000pt;}
.ws10{word-spacing:-8.636160pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._5{margin-left:-4.967040pt;}
._4{margin-left:-3.811627pt;}
._3{margin-left:-2.138667pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.050667pt;}
._14{width:2.127360pt;}
._6{width:3.059413pt;}
._15{width:4.090027pt;}
._2{width:5.029333pt;}
._10{width:6.294827pt;}
._f{width:7.918933pt;}
._13{width:8.935893pt;}
._a{width:10.068907pt;}
._9{width:11.019733pt;}
._d{width:12.085333pt;}
._e{width:15.055147pt;}
._16{width:16.028587pt;}
._b{width:16.955307pt;}
._c{width:17.891413pt;}
._24{width:18.804480pt;}
._8{width:20.174720pt;}
._7{width:21.497813pt;}
._1e{width:23.853653pt;}
._22{width:24.818773pt;}
._1a{width:25.922560pt;}
._12{width:29.586133pt;}
._11{width:30.490880pt;}
._25{width:32.031360pt;}
._18{width:34.209280pt;}
._1b{width:38.777600pt;}
._20{width:44.142720pt;}
._1d{width:49.507840pt;}
._17{width:56.106453pt;}
._23{width:114.007253pt;}
._21{width:123.079040pt;}
._1f{width:180.661120pt;}
._19{width:238.986880pt;}
._1c{width:386.501120pt;}
.fs9{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y4b{bottom:3.360000pt;}
.y103{bottom:3.400000pt;}
.ye{bottom:3.680000pt;}
.y1a{bottom:4.320000pt;}
.ye4{bottom:4.640000pt;}
.ye7{bottom:4.800000pt;}
.yf0{bottom:6.240000pt;}
.yf3{bottom:6.394667pt;}
.yed{bottom:6.400000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.yf9{bottom:12.986667pt;}
.y4f{bottom:13.440000pt;}
.y4{bottom:15.552000pt;}
.y4d{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.yaf{bottom:18.560000pt;}
.ybc{bottom:18.586667pt;}
.y4a{bottom:18.720000pt;}
.y102{bottom:18.760000pt;}
.yc0{bottom:20.640000pt;}
.y19{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.yeb{bottom:29.600000pt;}
.y5{bottom:29.920000pt;}
.yca{bottom:30.560000pt;}
.y49{bottom:34.080000pt;}
.y18{bottom:40.840000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.480000pt;}
.y48{bottom:49.280000pt;}
.y100{bottom:49.440000pt;}
.y17{bottom:55.560000pt;}
.y47{bottom:64.640000pt;}
.y9{bottom:65.120000pt;}
.yc4{bottom:67.200000pt;}
.y16{bottom:70.280000pt;}
.y46{bottom:80.000000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.200000pt;}
.yf6{bottom:88.832000pt;}
.y54{bottom:89.632000pt;}
.y14{bottom:93.640000pt;}
.y45{bottom:95.360000pt;}
.y7{bottom:99.066667pt;}
.yb9{bottom:100.192000pt;}
.y127{bottom:101.632000pt;}
.yf5{bottom:104.192000pt;}
.y53{bottom:104.992000pt;}
.y13{bottom:109.800000pt;}
.yff{bottom:110.720000pt;}
.y44{bottom:110.760000pt;}
.y126{bottom:117.792000pt;}
.yf4{bottom:119.552000pt;}
.y52{bottom:120.352000pt;}
.yfe{bottom:126.080000pt;}
.y43{bottom:126.120000pt;}
.y12{bottom:126.280000pt;}
.y90{bottom:129.952000pt;}
.yf2{bottom:132.192000pt;}
.y125{bottom:134.106667pt;}
.yb8{bottom:134.906667pt;}
.y51{bottom:135.226667pt;}
.y42{bottom:141.320000pt;}
.y8f{bottom:145.626667pt;}
.yb7{bottom:147.546667pt;}
.y11{bottom:149.160000pt;}
.y124{bottom:150.426667pt;}
.y50{bottom:150.906667pt;}
.yf1{bottom:151.226667pt;}
.y41{bottom:156.680000pt;}
.y8e{bottom:160.826667pt;}
.y4c{bottom:162.906667pt;}
.y123{bottom:166.746667pt;}
.yef{bottom:170.266667pt;}
.y10{bottom:171.080000pt;}
.y40{bottom:172.040000pt;}
.y8d{bottom:176.186667pt;}
.y122{bottom:182.106667pt;}
.y3f{bottom:187.400000pt;}
.y1d{bottom:188.986667pt;}
.yee{bottom:189.146667pt;}
.y8c{bottom:191.546667pt;}
.yb6{bottom:194.266667pt;}
.y121{bottom:197.306667pt;}
.y3e{bottom:202.760000pt;}
.y8b{bottom:206.906667pt;}
.yec{bottom:208.186667pt;}
.yb5{bottom:210.266667pt;}
.y120{bottom:212.666667pt;}
.y3d{bottom:217.960000pt;}
.y8a{bottom:222.266667pt;}
.yb4{bottom:226.266667pt;}
.yea{bottom:227.226667pt;}
.y11f{bottom:228.026667pt;}
.y3c{bottom:233.320000pt;}
.y89{bottom:237.626667pt;}
.yb3{bottom:242.266667pt;}
.y11e{bottom:243.386667pt;}
.y3b{bottom:248.680000pt;}
.y88{bottom:252.826667pt;}
.y11d{bottom:258.746667pt;}
.y3a{bottom:264.040000pt;}
.y87{bottom:268.186667pt;}
.y11c{bottom:275.066667pt;}
.yb2{bottom:276.826667pt;}
.y39{bottom:279.400000pt;}
.y86{bottom:283.546667pt;}
.ye9{bottom:288.186667pt;}
.yb1{bottom:289.626667pt;}
.y11b{bottom:290.266667pt;}
.y38{bottom:294.760000pt;}
.y85{bottom:298.906667pt;}
.ye6{bottom:300.866667pt;}
.ye8{bottom:301.666667pt;}
.yb0{bottom:305.666667pt;}
.y37{bottom:309.640000pt;}
.y84{bottom:314.306667pt;}
.ye3{bottom:318.306667pt;}
.ye5{bottom:318.946667pt;}
.y11a{bottom:321.026667pt;}
.yae{bottom:321.666667pt;}
.y36{bottom:325.320000pt;}
.y83{bottom:329.666667pt;}
.y29{bottom:329.800000pt;}
.ye2{bottom:335.586667pt;}
.y119{bottom:336.386667pt;}
.y35{bottom:340.680000pt;}
.y82{bottom:344.866667pt;}
.y28{bottom:345.160000pt;}
.y118{bottom:351.746667pt;}
.y34{bottom:356.066667pt;}
.y81{bottom:360.226667pt;}
.y27{bottom:360.386667pt;}
.y117{bottom:368.066667pt;}
.y33{bottom:371.426667pt;}
.yad{bottom:371.586667pt;}
.y80{bottom:375.586667pt;}
.y26{bottom:375.906667pt;}
.y116{bottom:383.266667pt;}
.yac{bottom:384.226667pt;}
.ye1{bottom:385.666667pt;}
.y32{bottom:386.786667pt;}
.y7f{bottom:390.946667pt;}
.y25{bottom:391.426667pt;}
.y115{bottom:398.626667pt;}
.ye0{bottom:400.866667pt;}
.y31{bottom:401.986667pt;}
.y7e{bottom:406.306667pt;}
.y24{bottom:406.786667pt;}
.y114{bottom:413.986667pt;}
.yab{bottom:415.586667pt;}
.ydf{bottom:416.226667pt;}
.y30{bottom:417.346667pt;}
.y7d{bottom:421.506667pt;}
.y23{bottom:422.306667pt;}
.y113{bottom:429.346667pt;}
.yde{bottom:431.586667pt;}
.y2f{bottom:432.706667pt;}
.y7c{bottom:436.866667pt;}
.y22{bottom:437.826667pt;}
.y112{bottom:444.386667pt;}
.yaa{bottom:446.946667pt;}
.y2e{bottom:448.066667pt;}
.y7b{bottom:452.226667pt;}
.y21{bottom:453.186667pt;}
.y111{bottom:459.906667pt;}
.ydd{bottom:462.306667pt;}
.ya9{bottom:462.946667pt;}
.y2d{bottom:463.426667pt;}
.y7a{bottom:467.586667pt;}
.y20{bottom:471.266667pt;}
.y110{bottom:472.706667pt;}
.ydc{bottom:477.506667pt;}
.y2c{bottom:478.626667pt;}
.ya8{bottom:478.946667pt;}
.y14b{bottom:480.066667pt;}
.y79{bottom:482.946667pt;}
.y10f{bottom:488.706667pt;}
.ydb{bottom:492.866667pt;}
.y2b{bottom:493.986667pt;}
.ya7{bottom:494.946667pt;}
.y14a{bottom:495.426667pt;}
.y1f{bottom:495.746667pt;}
.y78{bottom:498.306667pt;}
.y10e{bottom:504.706667pt;}
.yda{bottom:505.506667pt;}
.y2a{bottom:509.346667pt;}
.y149{bottom:510.626667pt;}
.y1e{bottom:511.266667pt;}
.y77{bottom:513.506667pt;}
.yd9{bottom:521.506667pt;}
.y148{bottom:525.986667pt;}
.y76{bottom:528.866667pt;}
.ya6{bottom:529.506667pt;}
.yd8{bottom:537.533333pt;}
.y10d{bottom:539.293333pt;}
.y147{bottom:541.373333pt;}
.ya5{bottom:542.333333pt;}
.y75{bottom:544.253333pt;}
.y10c{bottom:551.933333pt;}
.yd7{bottom:553.533333pt;}
.y146{bottom:556.733333pt;}
.ya4{bottom:558.333333pt;}
.y74{bottom:559.293333pt;}
.y10b{bottom:567.933333pt;}
.yd6{bottom:569.533333pt;}
.y145{bottom:572.093333pt;}
.ya3{bottom:574.333333pt;}
.y73{bottom:574.973333pt;}
.y10a{bottom:583.933333pt;}
.yd5{bottom:585.533333pt;}
.y144{bottom:587.453333pt;}
.y72{bottom:590.333333pt;}
.yd4{bottom:601.533333pt;}
.y143{bottom:602.653333pt;}
.y71{bottom:605.533333pt;}
.ya2{bottom:606.333333pt;}
.y142{bottom:618.013333pt;}
.y70{bottom:620.893333pt;}
.y141{bottom:633.373333pt;}
.y6f{bottom:636.253333pt;}
.ya1{bottom:640.893333pt;}
.y140{bottom:648.733333pt;}
.yd3{bottom:648.893333pt;}
.y109{bottom:649.373333pt;}
.y6e{bottom:651.613333pt;}
.ya0{bottom:653.533333pt;}
.y108{bottom:662.013333pt;}
.y13f{bottom:664.093333pt;}
.y6d{bottom:666.973333pt;}
.y9f{bottom:669.533333pt;}
.y107{bottom:678.013333pt;}
.y13e{bottom:679.453333pt;}
.yd2{bottom:680.253333pt;}
.y6c{bottom:682.333333pt;}
.y9e{bottom:685.533333pt;}
.y106{bottom:694.013333pt;}
.y13d{bottom:694.653333pt;}
.yd1{bottom:696.253333pt;}
.y6b{bottom:697.533333pt;}
.y13c{bottom:710.013333pt;}
.y1b{bottom:710.333333pt;}
.yd0{bottom:712.253333pt;}
.y6a{bottom:712.573333pt;}
.y9d{bottom:720.253333pt;}
.y69{bottom:728.253333pt;}
.y105{bottom:728.573333pt;}
.y9c{bottom:732.893333pt;}
.yf{bottom:736.573333pt;}
.y13b{bottom:740.733333pt;}
.y104{bottom:741.373333pt;}
.y68{bottom:743.613333pt;}
.ycf{bottom:746.973333pt;}
.y9b{bottom:748.893333pt;}
.y13a{bottom:756.093333pt;}
.y67{bottom:758.973333pt;}
.yce{bottom:759.613333pt;}
.y9a{bottom:764.893333pt;}
.y139{bottom:771.453333pt;}
.y101{bottom:772.573333pt;}
.y66{bottom:774.213333pt;}
.ycd{bottom:775.653333pt;}
.y138{bottom:786.693333pt;}
.y65{bottom:789.573333pt;}
.ycc{bottom:791.653333pt;}
.y99{bottom:799.653333pt;}
.y137{bottom:802.053333pt;}
.yfd{bottom:803.973333pt;}
.y64{bottom:804.933333pt;}
.y98{bottom:812.293333pt;}
.y136{bottom:817.413333pt;}
.y63{bottom:820.293333pt;}
.ycb{bottom:826.213333pt;}
.y97{bottom:828.293333pt;}
.y135{bottom:832.773333pt;}
.y62{bottom:835.333333pt;}
.yc3{bottom:839.013333pt;}
.yc7{bottom:839.653333pt;}
.y96{bottom:844.293333pt;}
.y134{bottom:848.133333pt;}
.y61{bottom:851.013333pt;}
.y133{bottom:863.333333pt;}
.y60{bottom:866.213333pt;}
.yc9{bottom:870.213333pt;}
.yc6{bottom:871.013333pt;}
.y132{bottom:878.693333pt;}
.y95{bottom:879.013333pt;}
.y5f{bottom:881.573333pt;}
.yc8{bottom:886.213333pt;}
.y94{bottom:891.653333pt;}
.y131{bottom:894.053333pt;}
.y5e{bottom:896.933333pt;}
.yc5{bottom:902.213333pt;}
.y93{bottom:907.653333pt;}
.y130{bottom:909.093333pt;}
.y5d{bottom:912.293333pt;}
.ybf{bottom:919.013333pt;}
.yc2{bottom:919.653333pt;}
.yd{bottom:921.253333pt;}
.y92{bottom:923.653333pt;}
.y12f{bottom:924.773333pt;}
.y5c{bottom:927.653333pt;}
.yc1{bottom:935.653333pt;}
.y6{bottom:939.013333pt;}
.y12e{bottom:940.133333pt;}
.y5b{bottom:942.693333pt;}
.ybe{bottom:952.293333pt;}
.y12d{bottom:955.333333pt;}
.y5a{bottom:958.213333pt;}
.yfc{bottom:961.413333pt;}
.y12c{bottom:970.693333pt;}
.y91{bottom:973.253333pt;}
.y59{bottom:973.573333pt;}
.yfb{bottom:974.053333pt;}
.y12b{bottom:986.053333pt;}
.ybd{bottom:987.013333pt;}
.y58{bottom:988.933333pt;}
.yfa{bottom:990.053333pt;}
.ybb{bottom:999.653333pt;}
.y12a{bottom:1001.413333pt;}
.y57{bottom:1004.293333pt;}
.yf8{bottom:1006.053333pt;}
.y129{bottom:1017.760000pt;}
.y56{bottom:1019.680000pt;}
.yba{bottom:1031.040000pt;}
.y128{bottom:1034.080000pt;}
.yf7{bottom:1034.720000pt;}
.y55{bottom:1035.040000pt;}
.h2b{height:2.512500pt;}
.h24{height:15.200000pt;}
.h27{height:15.232000pt;}
.h22{height:15.360000pt;}
.h23{height:15.392000pt;}
.h2d{height:16.640000pt;}
.h2e{height:16.800000pt;}
.hc{height:17.280000pt;}
.h31{height:18.240000pt;}
.h30{height:18.400000pt;}
.h32{height:24.992000pt;}
.h13{height:25.750000pt;}
.h1d{height:26.080000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h26{height:30.560000pt;}
.h29{height:30.592000pt;}
.h25{height:30.720000pt;}
.h34{height:30.752000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h2a{height:32.640000pt;}
.h1e{height:34.505000pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h2f{height:41.600000pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h28{height:46.080000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h1a{height:52.108438pt;}
.h1c{height:52.134375pt;}
.h21{height:52.478750pt;}
.h10{height:52.834688pt;}
.h1b{height:53.535000pt;}
.h11{height:54.390938pt;}
.h20{height:54.598989pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h2c{height:79.200000pt;}
.h7{height:108.032000pt;}
.h33{height:138.080000pt;}
.hd{height:184.666667pt;}
.h16{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:49.920000pt;}
.w27{width:60.000000pt;}
.w26{width:63.552000pt;}
.w3{width:66.560000pt;}
.w28{width:75.552000pt;}
.w23{width:75.680000pt;}
.w16{width:76.032000pt;}
.w22{width:84.192000pt;}
.w24{width:88.192000pt;}
.w19{width:92.352000pt;}
.w1a{width:98.080000pt;}
.w1b{width:98.112000pt;}
.w25{width:98.560000pt;}
.w18{width:104.160000pt;}
.w29{width:113.280000pt;}
.w21{width:117.600000pt;}
.w15{width:120.480000pt;}
.w12{width:127.040000pt;}
.w11{width:127.072000pt;}
.w1e{width:132.000000pt;}
.wb{width:132.160000pt;}
.wa{width:132.192000pt;}
.w5{width:138.106667pt;}
.w20{width:160.026667pt;}
.w8{width:186.786667pt;}
.w17{width:196.826667pt;}
.w14{width:212.186667pt;}
.w13{width:212.226667pt;}
.w1c{width:214.626667pt;}
.w10{width:220.186667pt;}
.we{width:220.666667pt;}
.wd{width:220.826667pt;}
.wc{width:220.866667pt;}
.wf{width:221.986667pt;}
.w1f{width:384.573333pt;}
.w9{width:477.506667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1c{left:-17.160000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x2{left:7.680000pt;}
.x15{left:11.200000pt;}
.xd{left:18.432000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x16{left:95.871988pt;}
.xf{left:104.826667pt;}
.x10{left:129.626667pt;}
.x2f{left:149.946667pt;}
.x11{left:165.146667pt;}
.x13{left:176.186667pt;}
.x12{left:184.226667pt;}
.xe{left:191.746667pt;}
.x20{left:192.826667pt;}
.x17{left:198.106667pt;}
.x6{left:202.906667pt;}
.x30{left:226.266667pt;}
.x14{left:251.586667pt;}
.x9{left:253.346667pt;}
.x24{left:277.986667pt;}
.x2b{left:280.546667pt;}
.x26{left:285.506667pt;}
.x1d{left:286.626667pt;}
.x1f{left:287.746667pt;}
.x7{left:304.866667pt;}
.x31{left:315.106667pt;}
.x2c{left:319.106655pt;}
.x21{left:320.546667pt;}
.x8{left:323.746667pt;}
.xb{left:325.826667pt;}
.x19{left:330.946667pt;}
.xc{left:332.066667pt;}
.x2a{left:384.226667pt;}
.x29{left:390.306667pt;}
.xa{left:402.026667pt;}
.x27{left:406.626667pt;}
.x32{left:414.306667pt;}
.x22{left:448.253333pt;}
.x2d{left:450.493333pt;}
.x1a{left:463.773333pt;}
.x33{left:478.493333pt;}
.x25{left:490.813333pt;}
.x28{left:498.333333pt;}
.x1e{left:508.093333pt;}
.x34{left:539.293333pt;}
.x23{left:575.933333pt;}
.x1b{left:596.613333pt;}
.x2e{left:611.173333pt;}
.x35{left:615.493333pt;}
.x3{left:663.013333pt;}
}




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