
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_7b7e3599524f7298cd74bdd0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45b4717b05554f547cea4192.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_14b7b1f20a0c0ccd2ae58d86.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e2c74eadc8b402f86ae5e0ab.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_64c3f7bcc4601691404ccf48.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8639608b013dfb8014844465.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_b7a191d09da7966ef611caec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_1e905d230953ace0f86a887e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a6a16901ae315bcf4f42d83e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_1951a3bb0afa9eb57a073bbd.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.160000px;}
.v7{vertical-align:20.160000px;}
.v3{vertical-align:23.760000px;}
.v8{vertical-align:44.640000px;}
.v4{vertical-align:50.400000px;}
.v6{vertical-align:52.560000px;}
.v5{vertical-align:74.880000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.567600px;}
.ls18{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.274800px;}
.ls17{letter-spacing:-0.226200px;}
.ls20{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.089400px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023040px;}
.ls14{letter-spacing:0.100800px;}
.ls1d{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls6{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls1c{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.315600px;}
.ls1b{letter-spacing:0.354000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.414600px;}
.lsd{letter-spacing:0.478080px;}
.ls15{letter-spacing:0.567600px;}
.ls7{letter-spacing:0.828000px;}
.lsc{letter-spacing:3.029040px;}
.lsb{letter-spacing:3.286080px;}
.lse{letter-spacing:3.864960px;}
.ls1a{letter-spacing:6.785280px;}
.ls11{letter-spacing:16.709040px;}
.ls13{letter-spacing:17.478720px;}
.ls1e{letter-spacing:39.905280px;}
.lsf{letter-spacing:124.169040px;}
.ls0{letter-spacing:207.416640px;}
.ls12{letter-spacing:267.449040px;}
.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;}
}
.wsf{word-spacing:-66.263040px;}
.wsb{word-spacing:-66.240000px;}
.wse{word-spacing:-52.536960px;}
.wsc{word-spacing:-51.816960px;}
.wsd{word-spacing:-51.615360px;}
.wsa{word-spacing:-48.481920px;}
.ws9{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.388000px;}
.ws10{word-spacing:-17.127600px;}
.ws16{word-spacing:-16.822200px;}
.ws19{word-spacing:-16.712400px;}
.ws17{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.450800px;}
.ws14{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws11{word-spacing:-10.755600px;}
.ws2{word-spacing:-10.440000px;}
.ws15{word-spacing:-10.350600px;}
.ws13{word-spacing:-10.213800px;}
.ws12{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-2.009760px;}
._1{margin-left:-1.008000px;}
._0{width:1.044000px;}
._2{width:2.462880px;}
._b{width:3.913440px;}
._13{width:5.107200px;}
._12{width:6.425280px;}
._c{width:8.175360px;}
._4{width:9.604800px;}
._5{width:10.992000px;}
._f{width:12.121920px;}
._10{width:13.138080px;}
._14{width:14.595360px;}
._7{width:18.508800px;}
._6{width:19.938240px;}
._11{width:21.655200px;}
._19{width:23.581440px;}
._1a{width:24.641280px;}
._18{width:26.225760px;}
._17{width:27.351840px;}
._d{width:28.701120px;}
._e{width:29.710080px;}
._1c{width:30.920160px;}
._1b{width:32.016480px;}
._1e{width:34.113600px;}
._28{width:35.769600px;}
._9{width:37.321920px;}
._8{width:38.485440px;}
._2c{width:39.859200px;}
._29{width:40.870080px;}
._34{width:43.211040px;}
._35{width:44.244480px;}
._2a{width:45.440640px;}
._2b{width:46.986720px;}
._24{width:49.134240px;}
._23{width:50.182080px;}
._15{width:51.600960px;}
._16{width:53.484960px;}
._2f{width:54.841920px;}
._2d{width:56.900160px;}
._2e{width:58.291200px;}
._22{width:59.830560px;}
._21{width:61.095840px;}
._26{width:64.517760px;}
._1f{width:66.571200px;}
._20{width:67.676160px;}
._30{width:74.586240px;}
._31{width:76.397280px;}
._1d{width:83.444160px;}
._32{width:97.571520px;}
._33{width:98.697600px;}
._25{width:199.584000px;}
._27{width:552.718080px;}
._3{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y87{bottom:13.500000px;}
.yab{bottom:13.530000px;}
.yb4{bottom:13.545000px;}
.yb9{bottom:13.680000px;}
.y98{bottom:13.710000px;}
.y8e{bottom:13.725000px;}
.y111{bottom:14.400000px;}
.y120{bottom:14.580000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y34{bottom:79.056000px;}
.yee{bottom:94.176000px;}
.y30{bottom:97.596000px;}
.y132{bottom:102.456000px;}
.ya8{bottom:104.436000px;}
.yce{bottom:105.336000px;}
.y10d{bottom:109.116000px;}
.y5d{bottom:109.836000px;}
.yed{bottom:122.616000px;}
.y7f{bottom:123.156000px;}
.y2f{bottom:126.036000px;}
.y131{bottom:130.896000px;}
.ya7{bottom:132.876000px;}
.ycd{bottom:133.776000px;}
.y10c{bottom:137.556000px;}
.y5c{bottom:138.456000px;}
.yec{bottom:151.050000px;}
.y7e{bottom:151.590000px;}
.y2e{bottom:154.470000px;}
.y130{bottom:159.330000px;}
.ya6{bottom:161.310000px;}
.ycc{bottom:162.210000px;}
.y10b{bottom:166.170000px;}
.y5b{bottom:166.890000px;}
.yeb{bottom:179.490000px;}
.y7d{bottom:180.030000px;}
.y2d{bottom:182.910000px;}
.y12f{bottom:187.950000px;}
.ya5{bottom:189.750000px;}
.ycb{bottom:190.650000px;}
.y10a{bottom:194.610000px;}
.y62{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.yea{bottom:207.930000px;}
.y7c{bottom:208.470000px;}
.y109{bottom:210.270000px;}
.y2c{bottom:211.350000px;}
.y12e{bottom:216.390000px;}
.ya4{bottom:218.190000px;}
.yca{bottom:219.270000px;}
.y59{bottom:223.770000px;}
.ye9{bottom:236.370000px;}
.y7b{bottom:236.910000px;}
.y108{bottom:238.710000px;}
.y2b{bottom:239.790000px;}
.y12d{bottom:244.830000px;}
.ya3{bottom:246.630000px;}
.yc9{bottom:247.710000px;}
.y58{bottom:252.210000px;}
.ye8{bottom:264.990000px;}
.y7a{bottom:265.530000px;}
.y107{bottom:267.150000px;}
.y2a{bottom:268.230000px;}
.y12c{bottom:273.270000px;}
.ya2{bottom:275.070000px;}
.yc8{bottom:276.150000px;}
.y57{bottom:280.650000px;}
.ye7{bottom:293.430000px;}
.y79{bottom:293.970000px;}
.y106{bottom:295.590000px;}
.y29{bottom:296.850000px;}
.y12b{bottom:301.710000px;}
.ya1{bottom:303.510000px;}
.yc7{bottom:304.590000px;}
.y61{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.ye6{bottom:321.915000px;}
.y78{bottom:322.455000px;}
.y105{bottom:324.075000px;}
.y28{bottom:325.335000px;}
.y134{bottom:330.195000px;}
.ya0{bottom:332.175000px;}
.yc6{bottom:333.075000px;}
.y12a{bottom:336.135000px;}
.y55{bottom:337.215000px;}
.y60{bottom:337.575000px;}
.ye5{bottom:350.355000px;}
.y77{bottom:350.895000px;}
.y104{bottom:352.515000px;}
.y27{bottom:353.775000px;}
.y129{bottom:358.635000px;}
.y9f{bottom:360.615000px;}
.yc5{bottom:361.515000px;}
.y54{bottom:366.015000px;}
.ye4{bottom:378.795000px;}
.y76{bottom:379.335000px;}
.y103{bottom:380.955000px;}
.y26{bottom:382.215000px;}
.y128{bottom:387.075000px;}
.y9e{bottom:389.055000px;}
.yc4{bottom:389.955000px;}
.y135{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.ye3{bottom:407.235000px;}
.y75{bottom:407.775000px;}
.y102{bottom:409.575000px;}
.y25{bottom:410.295000px;}
.y31{bottom:410.655000px;}
.y127{bottom:415.515000px;}
.y9d{bottom:417.495000px;}
.yc3{bottom:418.395000px;}
.y52{bottom:423.075000px;}
.ye2{bottom:435.675000px;}
.y74{bottom:436.215000px;}
.y101{bottom:438.015000px;}
.y24{bottom:442.875000px;}
.y126{bottom:444.135000px;}
.y9c{bottom:445.935000px;}
.yc2{bottom:446.835000px;}
.y83{bottom:451.155000px;}
.y51{bottom:451.515000px;}
.ye1{bottom:464.115000px;}
.y73{bottom:464.655000px;}
.y100{bottom:466.455000px;}
.y23{bottom:471.315000px;}
.y125{bottom:472.575000px;}
.y9b{bottom:474.375000px;}
.yc1{bottom:475.455000px;}
.y50{bottom:479.955000px;}
.ye0{bottom:492.555000px;}
.y72{bottom:493.095000px;}
.yff{bottom:494.895000px;}
.y22{bottom:499.755000px;}
.y124{bottom:500.655000px;}
.y133{bottom:501.015000px;}
.y9a{bottom:502.815000px;}
.yc0{bottom:503.895000px;}
.y5f{bottom:508.035000px;}
.y4f{bottom:508.395000px;}
.ydf{bottom:521.175000px;}
.y71{bottom:521.715000px;}
.yfe{bottom:523.335000px;}
.y21{bottom:528.195000px;}
.y123{bottom:529.455000px;}
.y99{bottom:531.255000px;}
.ybf{bottom:532.335000px;}
.y4e{bottom:536.835000px;}
.yde{bottom:549.615000px;}
.y70{bottom:549.795000px;}
.yfd{bottom:551.775000px;}
.y20{bottom:556.635000px;}
.y122{bottom:557.895000px;}
.y97{bottom:559.695000px;}
.ybe{bottom:560.775000px;}
.y4d{bottom:565.275000px;}
.ydd{bottom:578.085000px;}
.y6f{bottom:578.625000px;}
.yfc{bottom:580.245000px;}
.y1f{bottom:585.105000px;}
.y121{bottom:586.365000px;}
.y96{bottom:588.345000px;}
.ybd{bottom:589.245000px;}
.y137{bottom:593.385000px;}
.y4c{bottom:593.745000px;}
.y11f{bottom:602.025000px;}
.ydc{bottom:606.525000px;}
.y6e{bottom:607.065000px;}
.yfb{bottom:608.685000px;}
.y1e{bottom:613.725000px;}
.y95{bottom:616.785000px;}
.ybc{bottom:617.685000px;}
.y4b{bottom:622.185000px;}
.y11e{bottom:631.545000px;}
.ydb{bottom:634.965000px;}
.y6d{bottom:636.045000px;}
.yfa{bottom:637.125000px;}
.y1d{bottom:642.165000px;}
.y94{bottom:645.225000px;}
.ybb{bottom:646.125000px;}
.y4a{bottom:650.805000px;}
.y11d{bottom:659.985000px;}
.y6c{bottom:662.325000px;}
.yda{bottom:663.405000px;}
.yf9{bottom:665.745000px;}
.y1c{bottom:670.605000px;}
.y6b{bottom:673.485000px;}
.y93{bottom:673.665000px;}
.yba{bottom:674.565000px;}
.y5e{bottom:678.885000px;}
.y49{bottom:679.245000px;}
.y11c{bottom:688.425000px;}
.yd9{bottom:691.845000px;}
.yf8{bottom:694.185000px;}
.y1b{bottom:699.045000px;}
.y92{bottom:702.105000px;}
.yb8{bottom:703.005000px;}
.y48{bottom:707.685000px;}
.y6a{bottom:715.245000px;}
.y11b{bottom:717.045000px;}
.yd8{bottom:720.285000px;}
.yf7{bottom:722.625000px;}
.y1a{bottom:727.485000px;}
.y91{bottom:730.545000px;}
.yb7{bottom:731.625000px;}
.y47{bottom:736.125000px;}
.y69{bottom:743.685000px;}
.y11a{bottom:746.385000px;}
.yd7{bottom:748.725000px;}
.yf6{bottom:751.065000px;}
.y19{bottom:755.925000px;}
.y90{bottom:758.985000px;}
.yb6{bottom:760.065000px;}
.y46{bottom:764.565000px;}
.y68{bottom:772.125000px;}
.y119{bottom:774.825000px;}
.yd6{bottom:777.345000px;}
.yf5{bottom:779.505000px;}
.y8f{bottom:787.425000px;}
.yb5{bottom:788.505000px;}
.y18{bottom:790.305000px;}
.y45{bottom:793.005000px;}
.y67{bottom:800.565000px;}
.y118{bottom:803.445000px;}
.yd5{bottom:805.785000px;}
.yf4{bottom:807.945000px;}
.y8d{bottom:815.865000px;}
.yb3{bottom:816.945000px;}
.y17{bottom:818.745000px;}
.y44{bottom:821.490000px;}
.y66{bottom:829.050000px;}
.y117{bottom:832.830000px;}
.yd4{bottom:834.270000px;}
.yf3{bottom:836.430000px;}
.y8c{bottom:844.530000px;}
.yb2{bottom:845.430000px;}
.y16{bottom:847.230000px;}
.y82{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y65{bottom:853.890000px;}
.y116{bottom:861.270000px;}
.yd3{bottom:862.710000px;}
.yf2{bottom:864.870000px;}
.y64{bottom:865.050000px;}
.y8b{bottom:872.970000px;}
.yb1{bottom:873.870000px;}
.y15{bottom:875.850000px;}
.y81{bottom:878.010000px;}
.y42{bottom:878.370000px;}
.y115{bottom:889.890000px;}
.yd2{bottom:891.150000px;}
.yf1{bottom:893.310000px;}
.y8a{bottom:901.410000px;}
.yb0{bottom:902.310000px;}
.y14{bottom:904.290000px;}
.y41{bottom:906.990000px;}
.y114{bottom:919.230000px;}
.yd1{bottom:920.310000px;}
.yf0{bottom:921.930000px;}
.y89{bottom:929.850000px;}
.yaf{bottom:931.650000px;}
.y13{bottom:932.730000px;}
.y84{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.y113{bottom:947.670000px;}
.yef{bottom:950.370000px;}
.y88{bottom:958.290000px;}
.y12{bottom:961.170000px;}
.yd0{bottom:963.150000px;}
.y3f{bottom:963.870000px;}
.yae{bottom:974.310000px;}
.y112{bottom:976.290000px;}
.ycf{bottom:978.810000px;}
.y11{bottom:983.310000px;}
.y86{bottom:987.450000px;}
.y136{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y110{bottom:1004.730000px;}
.yad{bottom:1007.250000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.y85{bottom:1030.290000px;}
.y4{bottom:1032.810000px;}
.y10f{bottom:1034.070000px;}
.yac{bottom:1035.690000px;}
.y63{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y10e{bottom:1063.410000px;}
.yaa{bottom:1064.130000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.ya9{bottom:1092.600000px;}
.y80{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h16{height:28.440000px;}
.h19{height:28.476000px;}
.h1a{height:28.620000px;}
.h18{height:28.656000px;}
.h1b{height:29.340000px;}
.h1c{height:29.376000px;}
.h1d{height:29.520000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.hc{height:42.997500px;}
.h13{height:46.251562px;}
.h1{height:48.045938px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h12{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h17{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h15{height:109.650938px;}
.h11{height:111.043838px;}
.h10{height:111.043849px;}
.h14{height:115.535391px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wf{width:98.820000px;}
.w17{width:106.200000px;}
.wc{width:117.036000px;}
.w11{width:118.260000px;}
.w14{width:118.440000px;}
.w1f{width:127.656000px;}
.w23{width:147.780000px;}
.w1b{width:169.410000px;}
.w22{width:172.290000px;}
.w1a{width:176.790000px;}
.w10{width:191.550000px;}
.w1d{width:199.110000px;}
.w18{width:199.290000px;}
.w1c{width:205.050000px;}
.w24{width:209.550000px;}
.w12{width:215.130000px;}
.wd{width:261.030000px;}
.w9{width:263.190000px;}
.w8{width:263.235000px;}
.w20{width:275.790000px;}
.w21{width:283.215000px;}
.wa{width:285.150000px;}
.w3{width:361.335000px;}
.w1e{width:414.795000px;}
.wb{width:425.415000px;}
.we{width:430.665000px;}
.w15{width:437.505000px;}
.w19{width:452.265000px;}
.w13{width:472.785000px;}
.w16{width:508.965000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2a{left:35.145000px;}
.x13{left:45.900000px;}
.x20{left:47.340000px;}
.x2{left:53.999986px;}
.x18{left:55.440000px;}
.x2b{left:80.999986px;}
.xe{left:113.615986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xc{left:190.829986px;}
.xf{left:205.769986px;}
.xd{left:252.029986px;}
.x14{left:309.135000px;}
.x11{left:317.235000px;}
.x27{left:329.115000px;}
.x25{left:460.695000px;}
.x16{left:479.415000px;}
.x8{left:482.144986px;}
.x19{left:486.105000px;}
.x1e{left:492.945000px;}
.x23{left:499.605000px;}
.x28{left:501.405000px;}
.x2c{left:509.144986px;}
.x5{left:521.025000px;}
.x1c{left:528.225000px;}
.x21{left:556.305000px;}
.x15{left:572.325000px;}
.x12{left:580.425000px;}
.x1a{left:584.925000px;}
.x26{left:588.345000px;}
.x17{left:596.445000px;}
.x1b{left:604.365000px;}
.x24{left:605.805000px;}
.x1f{left:611.205000px;}
.x1d{left:646.665000px;}
.x29{left:649.185000px;}
.x22{left:662.505000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.920000pt;}
.v7{vertical-align:17.920000pt;}
.v3{vertical-align:21.120000pt;}
.v8{vertical-align:39.680000pt;}
.v4{vertical-align:44.800000pt;}
.v6{vertical-align:46.720000pt;}
.v5{vertical-align:66.560000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.504533pt;}
.ls18{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.244267pt;}
.ls17{letter-spacing:-0.201067pt;}
.ls20{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.020480pt;}
.ls14{letter-spacing:0.089600pt;}
.ls1d{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls6{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls1c{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.280533pt;}
.ls1b{letter-spacing:0.314667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.368533pt;}
.lsd{letter-spacing:0.424960pt;}
.ls15{letter-spacing:0.504533pt;}
.ls7{letter-spacing:0.736000pt;}
.lsc{letter-spacing:2.692480pt;}
.lsb{letter-spacing:2.920960pt;}
.lse{letter-spacing:3.435520pt;}
.ls1a{letter-spacing:6.031360pt;}
.ls11{letter-spacing:14.852480pt;}
.ls13{letter-spacing:15.536640pt;}
.ls1e{letter-spacing:35.471360pt;}
.lsf{letter-spacing:110.372480pt;}
.ls0{letter-spacing:184.370347pt;}
.ls12{letter-spacing:237.732480pt;}
.wsf{word-spacing:-58.900480pt;}
.wsb{word-spacing:-58.880000pt;}
.wse{word-spacing:-46.699520pt;}
.wsc{word-spacing:-46.059520pt;}
.wsd{word-spacing:-45.880320pt;}
.wsa{word-spacing:-43.095040pt;}
.ws9{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.456000pt;}
.ws10{word-spacing:-15.224533pt;}
.ws16{word-spacing:-14.953067pt;}
.ws19{word-spacing:-14.855467pt;}
.ws17{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.622933pt;}
.ws14{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws11{word-spacing:-9.560533pt;}
.ws2{word-spacing:-9.280000pt;}
.ws15{word-spacing:-9.200533pt;}
.ws13{word-spacing:-9.078933pt;}
.ws12{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-1.786453pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.928000pt;}
._2{width:2.189227pt;}
._b{width:3.478613pt;}
._13{width:4.539733pt;}
._12{width:5.711360pt;}
._c{width:7.266987pt;}
._4{width:8.537600pt;}
._5{width:9.770667pt;}
._f{width:10.775040pt;}
._10{width:11.678293pt;}
._14{width:12.973653pt;}
._7{width:16.452267pt;}
._6{width:17.722880pt;}
._11{width:19.249067pt;}
._19{width:20.961280pt;}
._1a{width:21.903360pt;}
._18{width:23.311787pt;}
._17{width:24.312747pt;}
._d{width:25.512107pt;}
._e{width:26.408960pt;}
._1c{width:27.484587pt;}
._1b{width:28.459093pt;}
._1e{width:30.323200pt;}
._28{width:31.795200pt;}
._9{width:33.175040pt;}
._8{width:34.209280pt;}
._2c{width:35.430400pt;}
._29{width:36.328960pt;}
._34{width:38.409813pt;}
._35{width:39.328427pt;}
._2a{width:40.391680pt;}
._2b{width:41.765973pt;}
._24{width:43.674880pt;}
._23{width:44.606293pt;}
._15{width:45.867520pt;}
._16{width:47.542187pt;}
._2f{width:48.748373pt;}
._2d{width:50.577920pt;}
._2e{width:51.814400pt;}
._22{width:53.182720pt;}
._21{width:54.307413pt;}
._26{width:57.349120pt;}
._1f{width:59.174400pt;}
._20{width:60.156587pt;}
._30{width:66.298880pt;}
._31{width:67.908693pt;}
._1d{width:74.172587pt;}
._32{width:86.730240pt;}
._33{width:87.731200pt;}
._25{width:177.408000pt;}
._27{width:491.304960pt;}
._3{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y87{bottom:12.000000pt;}
.yab{bottom:12.026667pt;}
.yb4{bottom:12.040000pt;}
.yb9{bottom:12.160000pt;}
.y98{bottom:12.186667pt;}
.y8e{bottom:12.200000pt;}
.y111{bottom:12.800000pt;}
.y120{bottom:12.960000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y34{bottom:70.272000pt;}
.yee{bottom:83.712000pt;}
.y30{bottom:86.752000pt;}
.y132{bottom:91.072000pt;}
.ya8{bottom:92.832000pt;}
.yce{bottom:93.632000pt;}
.y10d{bottom:96.992000pt;}
.y5d{bottom:97.632000pt;}
.yed{bottom:108.992000pt;}
.y7f{bottom:109.472000pt;}
.y2f{bottom:112.032000pt;}
.y131{bottom:116.352000pt;}
.ya7{bottom:118.112000pt;}
.ycd{bottom:118.912000pt;}
.y10c{bottom:122.272000pt;}
.y5c{bottom:123.072000pt;}
.yec{bottom:134.266667pt;}
.y7e{bottom:134.746667pt;}
.y2e{bottom:137.306667pt;}
.y130{bottom:141.626667pt;}
.ya6{bottom:143.386667pt;}
.ycc{bottom:144.186667pt;}
.y10b{bottom:147.706667pt;}
.y5b{bottom:148.346667pt;}
.yeb{bottom:159.546667pt;}
.y7d{bottom:160.026667pt;}
.y2d{bottom:162.586667pt;}
.y12f{bottom:167.066667pt;}
.ya5{bottom:168.666667pt;}
.ycb{bottom:169.466667pt;}
.y10a{bottom:172.986667pt;}
.y62{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.yea{bottom:184.826667pt;}
.y7c{bottom:185.306667pt;}
.y109{bottom:186.906667pt;}
.y2c{bottom:187.866667pt;}
.y12e{bottom:192.346667pt;}
.ya4{bottom:193.946667pt;}
.yca{bottom:194.906667pt;}
.y59{bottom:198.906667pt;}
.ye9{bottom:210.106667pt;}
.y7b{bottom:210.586667pt;}
.y108{bottom:212.186667pt;}
.y2b{bottom:213.146667pt;}
.y12d{bottom:217.626667pt;}
.ya3{bottom:219.226667pt;}
.yc9{bottom:220.186667pt;}
.y58{bottom:224.186667pt;}
.ye8{bottom:235.546667pt;}
.y7a{bottom:236.026667pt;}
.y107{bottom:237.466667pt;}
.y2a{bottom:238.426667pt;}
.y12c{bottom:242.906667pt;}
.ya2{bottom:244.506667pt;}
.yc8{bottom:245.466667pt;}
.y57{bottom:249.466667pt;}
.ye7{bottom:260.826667pt;}
.y79{bottom:261.306667pt;}
.y106{bottom:262.746667pt;}
.y29{bottom:263.866667pt;}
.y12b{bottom:268.186667pt;}
.ya1{bottom:269.786667pt;}
.yc7{bottom:270.746667pt;}
.y61{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.ye6{bottom:286.146667pt;}
.y78{bottom:286.626667pt;}
.y105{bottom:288.066667pt;}
.y28{bottom:289.186667pt;}
.y134{bottom:293.506667pt;}
.ya0{bottom:295.266667pt;}
.yc6{bottom:296.066667pt;}
.y12a{bottom:298.786667pt;}
.y55{bottom:299.746667pt;}
.y60{bottom:300.066667pt;}
.ye5{bottom:311.426667pt;}
.y77{bottom:311.906667pt;}
.y104{bottom:313.346667pt;}
.y27{bottom:314.466667pt;}
.y129{bottom:318.786667pt;}
.y9f{bottom:320.546667pt;}
.yc5{bottom:321.346667pt;}
.y54{bottom:325.346667pt;}
.ye4{bottom:336.706667pt;}
.y76{bottom:337.186667pt;}
.y103{bottom:338.626667pt;}
.y26{bottom:339.746667pt;}
.y128{bottom:344.066667pt;}
.y9e{bottom:345.826667pt;}
.yc4{bottom:346.626667pt;}
.y135{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.ye3{bottom:361.986667pt;}
.y75{bottom:362.466667pt;}
.y102{bottom:364.066667pt;}
.y25{bottom:364.706667pt;}
.y31{bottom:365.026667pt;}
.y127{bottom:369.346667pt;}
.y9d{bottom:371.106667pt;}
.yc3{bottom:371.906667pt;}
.y52{bottom:376.066667pt;}
.ye2{bottom:387.266667pt;}
.y74{bottom:387.746667pt;}
.y101{bottom:389.346667pt;}
.y24{bottom:393.666667pt;}
.y126{bottom:394.786667pt;}
.y9c{bottom:396.386667pt;}
.yc2{bottom:397.186667pt;}
.y83{bottom:401.026667pt;}
.y51{bottom:401.346667pt;}
.ye1{bottom:412.546667pt;}
.y73{bottom:413.026667pt;}
.y100{bottom:414.626667pt;}
.y23{bottom:418.946667pt;}
.y125{bottom:420.066667pt;}
.y9b{bottom:421.666667pt;}
.yc1{bottom:422.626667pt;}
.y50{bottom:426.626667pt;}
.ye0{bottom:437.826667pt;}
.y72{bottom:438.306667pt;}
.yff{bottom:439.906667pt;}
.y22{bottom:444.226667pt;}
.y124{bottom:445.026667pt;}
.y133{bottom:445.346667pt;}
.y9a{bottom:446.946667pt;}
.yc0{bottom:447.906667pt;}
.y5f{bottom:451.586667pt;}
.y4f{bottom:451.906667pt;}
.ydf{bottom:463.266667pt;}
.y71{bottom:463.746667pt;}
.yfe{bottom:465.186667pt;}
.y21{bottom:469.506667pt;}
.y123{bottom:470.626667pt;}
.y99{bottom:472.226667pt;}
.ybf{bottom:473.186667pt;}
.y4e{bottom:477.186667pt;}
.yde{bottom:488.546667pt;}
.y70{bottom:488.706667pt;}
.yfd{bottom:490.466667pt;}
.y20{bottom:494.786667pt;}
.y122{bottom:495.906667pt;}
.y97{bottom:497.506667pt;}
.ybe{bottom:498.466667pt;}
.y4d{bottom:502.466667pt;}
.ydd{bottom:513.853333pt;}
.y6f{bottom:514.333333pt;}
.yfc{bottom:515.773333pt;}
.y1f{bottom:520.093333pt;}
.y121{bottom:521.213333pt;}
.y96{bottom:522.973333pt;}
.ybd{bottom:523.773333pt;}
.y137{bottom:527.453333pt;}
.y4c{bottom:527.773333pt;}
.y11f{bottom:535.133333pt;}
.ydc{bottom:539.133333pt;}
.y6e{bottom:539.613333pt;}
.yfb{bottom:541.053333pt;}
.y1e{bottom:545.533333pt;}
.y95{bottom:548.253333pt;}
.ybc{bottom:549.053333pt;}
.y4b{bottom:553.053333pt;}
.y11e{bottom:561.373333pt;}
.ydb{bottom:564.413333pt;}
.y6d{bottom:565.373333pt;}
.yfa{bottom:566.333333pt;}
.y1d{bottom:570.813333pt;}
.y94{bottom:573.533333pt;}
.ybb{bottom:574.333333pt;}
.y4a{bottom:578.493333pt;}
.y11d{bottom:586.653333pt;}
.y6c{bottom:588.733333pt;}
.yda{bottom:589.693333pt;}
.yf9{bottom:591.773333pt;}
.y1c{bottom:596.093333pt;}
.y6b{bottom:598.653333pt;}
.y93{bottom:598.813333pt;}
.yba{bottom:599.613333pt;}
.y5e{bottom:603.453333pt;}
.y49{bottom:603.773333pt;}
.y11c{bottom:611.933333pt;}
.yd9{bottom:614.973333pt;}
.yf8{bottom:617.053333pt;}
.y1b{bottom:621.373333pt;}
.y92{bottom:624.093333pt;}
.yb8{bottom:624.893333pt;}
.y48{bottom:629.053333pt;}
.y6a{bottom:635.773333pt;}
.y11b{bottom:637.373333pt;}
.yd8{bottom:640.253333pt;}
.yf7{bottom:642.333333pt;}
.y1a{bottom:646.653333pt;}
.y91{bottom:649.373333pt;}
.yb7{bottom:650.333333pt;}
.y47{bottom:654.333333pt;}
.y69{bottom:661.053333pt;}
.y11a{bottom:663.453333pt;}
.yd7{bottom:665.533333pt;}
.yf6{bottom:667.613333pt;}
.y19{bottom:671.933333pt;}
.y90{bottom:674.653333pt;}
.yb6{bottom:675.613333pt;}
.y46{bottom:679.613333pt;}
.y68{bottom:686.333333pt;}
.y119{bottom:688.733333pt;}
.yd6{bottom:690.973333pt;}
.yf5{bottom:692.893333pt;}
.y8f{bottom:699.933333pt;}
.yb5{bottom:700.893333pt;}
.y18{bottom:702.493333pt;}
.y45{bottom:704.893333pt;}
.y67{bottom:711.613333pt;}
.y118{bottom:714.173333pt;}
.yd5{bottom:716.253333pt;}
.yf4{bottom:718.173333pt;}
.y8d{bottom:725.213333pt;}
.yb3{bottom:726.173333pt;}
.y17{bottom:727.773333pt;}
.y44{bottom:730.213333pt;}
.y66{bottom:736.933333pt;}
.y117{bottom:740.293333pt;}
.yd4{bottom:741.573333pt;}
.yf3{bottom:743.493333pt;}
.y8c{bottom:750.693333pt;}
.yb2{bottom:751.493333pt;}
.y16{bottom:753.093333pt;}
.y82{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y65{bottom:759.013333pt;}
.y116{bottom:765.573333pt;}
.yd3{bottom:766.853333pt;}
.yf2{bottom:768.773333pt;}
.y64{bottom:768.933333pt;}
.y8b{bottom:775.973333pt;}
.yb1{bottom:776.773333pt;}
.y15{bottom:778.533333pt;}
.y81{bottom:780.453333pt;}
.y42{bottom:780.773333pt;}
.y115{bottom:791.013333pt;}
.yd2{bottom:792.133333pt;}
.yf1{bottom:794.053333pt;}
.y8a{bottom:801.253333pt;}
.yb0{bottom:802.053333pt;}
.y14{bottom:803.813333pt;}
.y41{bottom:806.213333pt;}
.y114{bottom:817.093333pt;}
.yd1{bottom:818.053333pt;}
.yf0{bottom:819.493333pt;}
.y89{bottom:826.533333pt;}
.yaf{bottom:828.133333pt;}
.y13{bottom:829.093333pt;}
.y84{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.y113{bottom:842.373333pt;}
.yef{bottom:844.773333pt;}
.y88{bottom:851.813333pt;}
.y12{bottom:854.373333pt;}
.yd0{bottom:856.133333pt;}
.y3f{bottom:856.773333pt;}
.yae{bottom:866.053333pt;}
.y112{bottom:867.813333pt;}
.ycf{bottom:870.053333pt;}
.y11{bottom:874.053333pt;}
.y86{bottom:877.733333pt;}
.y136{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y110{bottom:893.093333pt;}
.yad{bottom:895.333333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.y85{bottom:915.813333pt;}
.y4{bottom:918.053333pt;}
.y10f{bottom:919.173333pt;}
.yac{bottom:920.613333pt;}
.y63{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y10e{bottom:945.253333pt;}
.yaa{bottom:945.893333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.ya9{bottom:971.200000pt;}
.y80{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h16{height:25.280000pt;}
.h19{height:25.312000pt;}
.h1a{height:25.440000pt;}
.h18{height:25.472000pt;}
.h1b{height:26.080000pt;}
.h1c{height:26.112000pt;}
.h1d{height:26.240000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.hc{height:38.220000pt;}
.h13{height:41.112500pt;}
.h1{height:42.707500pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h12{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h17{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h15{height:97.467500pt;}
.h11{height:98.705634pt;}
.h10{height:98.705643pt;}
.h14{height:102.698125pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wf{width:87.840000pt;}
.w17{width:94.400000pt;}
.wc{width:104.032000pt;}
.w11{width:105.120000pt;}
.w14{width:105.280000pt;}
.w1f{width:113.472000pt;}
.w23{width:131.360000pt;}
.w1b{width:150.586667pt;}
.w22{width:153.146667pt;}
.w1a{width:157.146667pt;}
.w10{width:170.266667pt;}
.w1d{width:176.986667pt;}
.w18{width:177.146667pt;}
.w1c{width:182.266667pt;}
.w24{width:186.266667pt;}
.w12{width:191.226667pt;}
.wd{width:232.026667pt;}
.w9{width:233.946667pt;}
.w8{width:233.986667pt;}
.w20{width:245.146667pt;}
.w21{width:251.746667pt;}
.wa{width:253.466667pt;}
.w3{width:321.186667pt;}
.w1e{width:368.706667pt;}
.wb{width:378.146667pt;}
.we{width:382.813333pt;}
.w15{width:388.893333pt;}
.w19{width:402.013333pt;}
.w13{width:420.253333pt;}
.w16{width:452.413333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2a{left:31.240000pt;}
.x13{left:40.800000pt;}
.x20{left:42.080000pt;}
.x2{left:47.999988pt;}
.x18{left:49.280000pt;}
.x2b{left:71.999988pt;}
.xe{left:100.991988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xc{left:169.626655pt;}
.xf{left:182.906655pt;}
.xd{left:224.026655pt;}
.x14{left:274.786667pt;}
.x11{left:281.986667pt;}
.x27{left:292.546667pt;}
.x25{left:409.506667pt;}
.x16{left:426.146667pt;}
.x8{left:428.573321pt;}
.x19{left:432.093333pt;}
.x1e{left:438.173333pt;}
.x23{left:444.093333pt;}
.x28{left:445.693333pt;}
.x2c{left:452.573321pt;}
.x5{left:463.133333pt;}
.x1c{left:469.533333pt;}
.x21{left:494.493333pt;}
.x15{left:508.733333pt;}
.x12{left:515.933333pt;}
.x1a{left:519.933333pt;}
.x26{left:522.973333pt;}
.x17{left:530.173333pt;}
.x1b{left:537.213333pt;}
.x24{left:538.493333pt;}
.x1f{left:543.293333pt;}
.x1d{left:574.813333pt;}
.x29{left:577.053333pt;}
.x22{left:588.893333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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