
    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_f4d3469e29da2bc1a006890c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_29d52dd8bf1ac72701d30d57.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_00e144f618bb466a47fd028e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_43a50944368df09197beb36c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_941f986c64d2312afd782bf5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_fccd6df39012b7556f3ad5d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_1e622527c8fbd648d7bb6252.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.103027;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_f2f2952f59c953192ec6a177.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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_338ebd3095f31f293e69d419.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8a83972c3bf6bcb298bf4e9c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.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;}
.m2{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-82.800000px;}
.v1{vertical-align:-79.200000px;}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.017280px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.073440px;}
.ls1{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.577920px;}
.ls10{letter-spacing:2.106720px;}
.ls17{letter-spacing:15.984000px;}
.ls3{letter-spacing:235.001280px;}
.ls4{letter-spacing:529.001280px;}
.ls2{letter-spacing:1199.261280px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws8{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws1{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.800000px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.152520px;}
.ws3{word-spacing:-16.613280px;}
.ws2{word-spacing:-16.506480px;}
.ws0{word-spacing:-15.228000px;}
.ws7{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.508000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-16.416000px;}
._39{margin-left:-7.272000px;}
._13{margin-left:-4.890960px;}
._14{margin-left:-2.896080px;}
._1{margin-left:-1.332000px;}
._0{width:1.080000px;}
._8{width:2.664000px;}
._b{width:3.744000px;}
._21{width:4.896000px;}
._7{width:5.976000px;}
._18{width:7.272000px;}
._1b{width:8.964000px;}
._1a{width:10.080000px;}
._1d{width:11.268000px;}
._a{width:12.312000px;}
._9{width:13.320000px;}
._16{width:14.904000px;}
._19{width:16.200000px;}
._6{width:17.208000px;}
._5{width:18.216000px;}
._3{width:19.740960px;}
._1c{width:21.096000px;}
._e{width:22.968000px;}
._d{width:24.192000px;}
._12{width:25.272000px;}
._11{width:26.640000px;}
._22{width:28.368000px;}
._20{width:29.664000px;}
._17{width:31.248000px;}
._2{width:33.252480px;}
._23{width:34.386960px;}
._30{width:35.672400px;}
._27{width:37.216800px;}
._1e{width:38.232000px;}
._1f{width:39.564000px;}
._10{width:41.112000px;}
._f{width:42.624000px;}
._25{width:44.208000px;}
._26{width:45.648000px;}
._37{width:46.987440px;}
._35{width:48.406800px;}
._34{width:49.660560px;}
._33{width:53.118000px;}
._2e{width:54.326160px;}
._2b{width:55.393200px;}
._2c{width:59.059200px;}
._32{width:60.613920px;}
._31{width:61.851600px;}
._2d{width:68.659920px;}
._2f{width:74.634960px;}
._24{width:75.864000px;}
._36{width:77.747760px;}
._38{width:92.280000px;}
._4{width:115.896000px;}
._15{width:121.312800px;}
._28{width:185.375520px;}
._29{width:186.451200px;}
._2a{width:187.532880px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(55,52,53);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:3.240000px;}
.yb2{bottom:3.405000px;}
.yab{bottom:3.420000px;}
.y2e{bottom:4.860000px;}
.y2f{bottom:5.760000px;}
.y59{bottom:13.140000px;}
.y9d{bottom:14.220000px;}
.y9f{bottom:14.400000px;}
.yc2{bottom:20.520000px;}
.yd7{bottom:20.685000px;}
.yaa{bottom:20.700000px;}
.yb1{bottom:20.730000px;}
.yc1{bottom:37.800000px;}
.yb0{bottom:37.830000px;}
.ya9{bottom:37.980000px;}
.yd6{bottom:38.010000px;}
.y9c{bottom:45.360000px;}
.ya8{bottom:55.080000px;}
.yaf{bottom:55.110000px;}
.ycc{bottom:55.260000px;}
.yd5{bottom:55.290000px;}
.y3{bottom:57.240000px;}
.ya7{bottom:72.360000px;}
.yae{bottom:72.390000px;}
.yc9{bottom:72.405000px;}
.ycb{bottom:72.540000px;}
.yd4{bottom:72.570000px;}
.y2{bottom:72.756000px;}
.y2c{bottom:88.776000px;}
.y71{bottom:88.956000px;}
.ya6{bottom:89.640000px;}
.yad{bottom:89.670000px;}
.yc8{bottom:89.685000px;}
.y9a{bottom:94.356000px;}
.y2b{bottom:96.336000px;}
.y70{bottom:96.516000px;}
.y117{bottom:97.236000px;}
.y2a{bottom:106.056000px;}
.y57{bottom:106.236000px;}
.yc0{bottom:106.740000px;}
.ya5{bottom:106.920000px;}
.yd3{bottom:106.950000px;}
.yc7{bottom:106.965000px;}
.y76{bottom:107.316000px;}
.y6c{bottom:113.616000px;}
.y56{bottom:113.796000px;}
.y99{bottom:114.156000px;}
.y116{bottom:117.936000px;}
.y55{bottom:123.336000px;}
.y29{bottom:123.516000px;}
.ybf{bottom:124.020000px;}
.ya4{bottom:124.200000px;}
.yd2{bottom:124.230000px;}
.yc6{bottom:124.245000px;}
.y6f{bottom:124.596000px;}
.yfa{bottom:127.296000px;}
.y75{bottom:128.016000px;}
.yde{bottom:130.896000px;}
.y28{bottom:131.076000px;}
.y98{bottom:133.956000px;}
.y115{bottom:138.816000px;}
.y54{bottom:140.616000px;}
.ybe{bottom:141.300000px;}
.ycf{bottom:141.330000px;}
.ya3{bottom:141.480000px;}
.yd1{bottom:141.510000px;}
.yc5{bottom:141.525000px;}
.y27{bottom:141.876000px;}
.y97{bottom:153.930000px;}
.ybc{bottom:157.710000px;}
.yf9{bottom:158.430000px;}
.ya2{bottom:158.580000px;}
.yce{bottom:158.610000px;}
.y53{bottom:159.150000px;}
.y114{bottom:159.330000px;}
.ydc{bottom:164.910000px;}
.yeb{bottom:165.270000px;}
.ydd{bottom:173.190000px;}
.y96{bottom:173.730000px;}
.ybb{bottom:174.990000px;}
.y25{bottom:175.710000px;}
.ya1{bottom:175.860000px;}
.y113{bottom:180.030000px;}
.y26{bottom:183.990000px;}
.yf6{bottom:186.510000px;}
.y52{bottom:189.390000px;}
.y6b{bottom:190.110000px;}
.yba{bottom:192.270000px;}
.y95{bottom:193.530000px;}
.ydb{bottom:196.050000px;}
.y112{bottom:200.730000px;}
.y24{bottom:206.850000px;}
.yb9{bottom:209.550000px;}
.yea{bottom:209.730000px;}
.y94{bottom:213.330000px;}
.ye9{bottom:216.570000px;}
.yf5{bottom:217.650000px;}
.y51{bottom:220.530000px;}
.y6a{bottom:221.250000px;}
.y111{bottom:221.430000px;}
.yb8{bottom:226.830000px;}
.yda{bottom:227.010000px;}
.y6e{bottom:229.530000px;}
.y93{bottom:233.130000px;}
.y23{bottom:237.810000px;}
.y110{bottom:242.130000px;}
.yb7{bottom:244.110000px;}
.yf4{bottom:248.610000px;}
.y50{bottom:251.490000px;}
.y69{bottom:252.210000px;}
.y92{bottom:253.110000px;}
.yd9{bottom:258.150000px;}
.yb6{bottom:261.210000px;}
.ye8{bottom:261.390000px;}
.y10f{bottom:262.830000px;}
.ye5{bottom:268.770000px;}
.y22{bottom:268.950000px;}
.y91{bottom:272.910000px;}
.yb5{bottom:278.490000px;}
.yf3{bottom:279.570000px;}
.ye7{bottom:279.930000px;}
.y4f{bottom:282.630000px;}
.y68{bottom:283.350000px;}
.y10e{bottom:283.530000px;}
.yb4{bottom:286.050000px;}
.yd8{bottom:289.110000px;}
.y90{bottom:292.710000px;}
.ye4{bottom:295.950000px;}
.yb3{bottom:297.030000px;}
.y21{bottom:300.090000px;}
.y8f{bottom:300.270000px;}
.y10d{bottom:304.230000px;}
.yd0{bottom:306.585000px;}
.y8e{bottom:310.350000px;}
.yf2{bottom:311.970000px;}
.ye3{bottom:313.230000px;}
.y4e{bottom:313.590000px;}
.y67{bottom:314.310000px;}
.yac{bottom:314.325000px;}
.y6d{bottom:314.490000px;}
.y8d{bottom:317.910000px;}
.ye2{bottom:320.790000px;}
.y10c{bottom:324.930000px;}
.y8c{bottom:327.630000px;}
.y20{bottom:331.275000px;}
.ye1{bottom:331.635000px;}
.y8b{bottom:335.235000px;}
.yf1{bottom:342.975000px;}
.y4c{bottom:344.775000px;}
.y66{bottom:345.495000px;}
.y10b{bottom:345.675000px;}
.y8a{bottom:346.035000px;}
.y4d{bottom:353.055000px;}
.y1f{bottom:362.235000px;}
.y10a{bottom:366.375000px;}
.yf0{bottom:374.115000px;}
.y4b{bottom:375.735000px;}
.y88{bottom:375.915000px;}
.y65{bottom:376.455000px;}
.y89{bottom:384.195000px;}
.ye0{bottom:384.735000px;}
.y109{bottom:387.075000px;}
.y1e{bottom:393.375000px;}
.yef{bottom:406.335000px;}
.y4a{bottom:406.875000px;}
.y87{bottom:407.055000px;}
.y64{bottom:407.595000px;}
.y108{bottom:407.775000px;}
.ya0{bottom:418.575000px;}
.y1d{bottom:424.155000px;}
.y107{bottom:428.475000px;}
.yee{bottom:437.475000px;}
.y49{bottom:437.835000px;}
.y86{bottom:438.015000px;}
.y63{bottom:438.555000px;}
.y106{bottom:449.355000px;}
.y1c{bottom:455.295000px;}
.ycd{bottom:462.675000px;}
.yed{bottom:468.435000px;}
.y48{bottom:468.975000px;}
.y61{bottom:469.695000px;}
.y105{bottom:470.055000px;}
.y62{bottom:477.975000px;}
.y1b{bottom:486.255000px;}
.y104{bottom:490.575000px;}
.y47{bottom:499.935000px;}
.y60{bottom:500.655000px;}
.y103{bottom:511.275000px;}
.y1a{bottom:517.395000px;}
.y46{bottom:531.075000px;}
.y5f{bottom:531.795000px;}
.y102{bottom:532.155000px;}
.ye6{bottom:540.075000px;}
.y19{bottom:548.355000px;}
.y101{bottom:552.675000px;}
.y45{bottom:562.035000px;}
.y5e{bottom:562.755000px;}
.y100{bottom:573.375000px;}
.y18{bottom:579.495000px;}
.y44{bottom:592.995000px;}
.y5d{bottom:593.895000px;}
.yff{bottom:594.075000px;}
.y9e{bottom:609.045000px;}
.y17{bottom:610.485000px;}
.y43{bottom:624.165000px;}
.y5c{bottom:624.885000px;}
.yfe{bottom:625.065000px;}
.y85{bottom:632.445000px;}
.yca{bottom:635.865000px;}
.y9b{bottom:640.905000px;}
.y16{bottom:641.625000px;}
.y84{bottom:655.125000px;}
.y42{bottom:655.305000px;}
.y5b{bottom:656.025000px;}
.yfd{bottom:656.205000px;}
.y15{bottom:675.105000px;}
.y83{bottom:686.265000px;}
.y41{bottom:686.985000px;}
.yfc{bottom:687.165000px;}
.y14{bottom:708.765000px;}
.y82{bottom:717.225000px;}
.y40{bottom:718.125000px;}
.yfb{bottom:718.305000px;}
.y13{bottom:730.365000px;}
.y81{bottom:748.365000px;}
.y3f{bottom:749.085000px;}
.y12{bottom:750.705000px;}
.y5a{bottom:757.365000px;}
.y11{bottom:769.605000px;}
.y80{bottom:779.325000px;}
.yf8{bottom:779.505000px;}
.y3e{bottom:780.225000px;}
.yc4{bottom:791.925000px;}
.y10{bottom:807.585000px;}
.y7f{bottom:810.465000px;}
.y3d{bottom:811.185000px;}
.yf{bottom:826.485000px;}
.y125{bottom:833.865000px;}
.y7e{bottom:841.425000px;}
.y3c{bottom:842.325000px;}
.y74{bottom:842.505000px;}
.ye{bottom:845.565000px;}
.y124{bottom:854.565000px;}
.yd{bottom:864.690000px;}
.y7d{bottom:872.610000px;}
.y3b{bottom:873.330000px;}
.y73{bottom:873.510000px;}
.y123{bottom:875.310000px;}
.yf7{bottom:881.610000px;}
.yc{bottom:894.210000px;}
.y122{bottom:895.830000px;}
.y7c{bottom:903.570000px;}
.y3a{bottom:904.470000px;}
.y72{bottom:912.750000px;}
.y121{bottom:918.330000px;}
.ya{bottom:925.170000px;}
.yb{bottom:933.450000px;}
.y7b{bottom:934.710000px;}
.y39{bottom:935.430000px;}
.ybd{bottom:948.030000px;}
.y120{bottom:959.730000px;}
.y7a{bottom:965.670000px;}
.y38{bottom:966.390000px;}
.y9{bottom:976.290000px;}
.y11f{bottom:979.710000px;}
.y8{bottom:993.570000px;}
.y79{bottom:996.810000px;}
.y37{bottom:997.530000px;}
.y11e{bottom:997.710000px;}
.y7{bottom:1005.630000px;}
.y11d{bottom:1018.590000px;}
.y78{bottom:1027.770000px;}
.y36{bottom:1028.490000px;}
.ydf{bottom:1036.770000px;}
.y11c{bottom:1039.110000px;}
.y6{bottom:1058.910000px;}
.y35{bottom:1059.630000px;}
.y11b{bottom:1059.810000px;}
.y11a{bottom:1080.510000px;}
.y34{bottom:1090.590000px;}
.y5{bottom:1098.330000px;}
.y77{bottom:1098.870000px;}
.y119{bottom:1101.390000px;}
.y4{bottom:1116.870000px;}
.y33{bottom:1121.730000px;}
.y118{bottom:1121.910000px;}
.yec{bottom:1130.040000px;}
.y1{bottom:1160.820000px;}
.y58{bottom:1164.420000px;}
.y32{bottom:1169.100000px;}
.y2d{bottom:1172.340000px;}
.y31{bottom:1189.260000px;}
.y30{bottom:1209.240000px;}
.hc{height:18.720000px;}
.hd{height:20.880000px;}
.he{height:27.540000px;}
.h11{height:31.140000px;}
.h18{height:38.158594px;}
.ha{height:40.550625px;}
.h2{height:45.184219px;}
.h8{height:50.312812px;}
.hb{height:53.573906px;}
.h17{height:54.069961px;}
.h3{height:56.320312px;}
.h19{height:58.651172px;}
.h10{height:62.100000px;}
.h6{height:62.327813px;}
.hf{height:64.546875px;}
.h5{height:69.086250px;}
.h4{height:75.093750px;}
.h9{height:87.859687px;}
.h13{height:103.521000px;}
.h15{height:155.340000px;}
.h14{height:155.355000px;}
.h16{height:172.470000px;}
.h12{height:189.750000px;}
.h1{height:1263.000000px;}
.h7{height:1263.057990px;}
.h0{height:1263.060000px;}
.w4{width:31.860000px;}
.w6{width:34.740000px;}
.w8{width:348.679500px;}
.w9{width:348.735000px;}
.w3{width:443.160000px;}
.w5{width:565.920000px;}
.w7{width:698.130000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.476000px;}
.x2c{left:7.729500px;}
.x18{left:11.550000px;}
.x1{left:118.656000px;}
.x10{left:124.056000px;}
.x11{left:126.000000px;}
.x13{left:127.116000px;}
.x3a{left:128.376000px;}
.x2a{left:129.456000px;}
.xb{left:171.750000px;}
.x2b{left:175.708125px;}
.x1d{left:182.550000px;}
.x19{left:188.668125px;}
.x24{left:189.748125px;}
.x1a{left:195.330000px;}
.x25{left:196.410000px;}
.x3e{left:198.750000px;}
.x28{left:220.708125px;}
.x3c{left:225.750000px;}
.x20{left:230.788125px;}
.x29{left:234.030000px;}
.x21{left:237.450000px;}
.x1b{left:244.648125px;}
.x1c{left:251.310000px;}
.x17{left:254.880000px;}
.x3d{left:257.970000px;}
.x3{left:261.570000px;}
.x33{left:264.990000px;}
.x34{left:287.128125px;}
.x35{left:300.495000px;}
.x41{left:303.913125px;}
.x42{left:317.235000px;}
.xf{left:334.695000px;}
.x2d{left:374.113125px;}
.x2e{left:387.435000px;}
.x6{left:405.255000px;}
.x36{left:417.673125px;}
.x31{left:422.893125px;}
.x37{left:430.995000px;}
.x32{left:436.215000px;}
.x9{left:466.995000px;}
.x2{left:468.435000px;}
.x7{left:535.243125px;}
.x8{left:541.905000px;}
.x1e{left:581.143125px;}
.x1f{left:587.805000px;}
.x22{left:607.243125px;}
.x23{left:613.905000px;}
.xa{left:622.905000px;}
.x3f{left:639.283125px;}
.x43{left:643.965000px;}
.x40{left:652.605000px;}
.x44{left:653.865000px;}
.x38{left:658.903125px;}
.x39{left:672.225000px;}
.x4{left:676.185000px;}
.x3b{left:689.370000px;}
.x2f{left:768.028125px;}
.x14{left:770.728125px;}
.x15{left:777.390000px;}
.xd{left:779.188125px;}
.x30{left:781.350000px;}
.xe{left:785.850000px;}
.x26{left:790.168125px;}
.x27{left:803.490000px;}
.x5{left:809.790000px;}
.xc{left:811.590000px;}
.x16{left:818.250000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v1{vertical-align:-70.400000pt;}
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.065280pt;}
.ls1{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.513707pt;}
.ls10{letter-spacing:1.872640pt;}
.ls17{letter-spacing:14.208000pt;}
.ls3{letter-spacing:208.890027pt;}
.ls4{letter-spacing:470.223360pt;}
.ls2{letter-spacing:1066.010027pt;}
.wsc{word-spacing:-64.000000pt;}
.ws8{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws1{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.135573pt;}
.ws3{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.672427pt;}
.ws0{word-spacing:-13.536000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws9{word-spacing:-12.896000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-14.592000pt;}
._39{margin-left:-6.464000pt;}
._13{margin-left:-4.347520pt;}
._14{margin-left:-2.574293pt;}
._1{margin-left:-1.184000pt;}
._0{width:0.960000pt;}
._8{width:2.368000pt;}
._b{width:3.328000pt;}
._21{width:4.352000pt;}
._7{width:5.312000pt;}
._18{width:6.464000pt;}
._1b{width:7.968000pt;}
._1a{width:8.960000pt;}
._1d{width:10.016000pt;}
._a{width:10.944000pt;}
._9{width:11.840000pt;}
._16{width:13.248000pt;}
._19{width:14.400000pt;}
._6{width:15.296000pt;}
._5{width:16.192000pt;}
._3{width:17.547520pt;}
._1c{width:18.752000pt;}
._e{width:20.416000pt;}
._d{width:21.504000pt;}
._12{width:22.464000pt;}
._11{width:23.680000pt;}
._22{width:25.216000pt;}
._20{width:26.368000pt;}
._17{width:27.776000pt;}
._2{width:29.557760pt;}
._23{width:30.566187pt;}
._30{width:31.708800pt;}
._27{width:33.081600pt;}
._1e{width:33.984000pt;}
._1f{width:35.168000pt;}
._10{width:36.544000pt;}
._f{width:37.888000pt;}
._25{width:39.296000pt;}
._26{width:40.576000pt;}
._37{width:41.766613pt;}
._35{width:43.028267pt;}
._34{width:44.142720pt;}
._33{width:47.216000pt;}
._2e{width:48.289920pt;}
._2b{width:49.238400pt;}
._2c{width:52.497067pt;}
._32{width:53.879040pt;}
._31{width:54.979200pt;}
._2d{width:61.031040pt;}
._2f{width:66.342187pt;}
._24{width:67.434667pt;}
._36{width:69.109120pt;}
._38{width:82.026667pt;}
._4{width:103.018667pt;}
._15{width:107.833600pt;}
._28{width:164.778240pt;}
._29{width:165.734400pt;}
._2a{width:166.695893pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:2.880000pt;}
.yb2{bottom:3.026667pt;}
.yab{bottom:3.040000pt;}
.y2e{bottom:4.320000pt;}
.y2f{bottom:5.120000pt;}
.y59{bottom:11.680000pt;}
.y9d{bottom:12.640000pt;}
.y9f{bottom:12.800000pt;}
.yc2{bottom:18.240000pt;}
.yd7{bottom:18.386667pt;}
.yaa{bottom:18.400000pt;}
.yb1{bottom:18.426667pt;}
.yc1{bottom:33.600000pt;}
.yb0{bottom:33.626667pt;}
.ya9{bottom:33.760000pt;}
.yd6{bottom:33.786667pt;}
.y9c{bottom:40.320000pt;}
.ya8{bottom:48.960000pt;}
.yaf{bottom:48.986667pt;}
.ycc{bottom:49.120000pt;}
.yd5{bottom:49.146667pt;}
.y3{bottom:50.880000pt;}
.ya7{bottom:64.320000pt;}
.yae{bottom:64.346667pt;}
.yc9{bottom:64.360000pt;}
.ycb{bottom:64.480000pt;}
.yd4{bottom:64.506667pt;}
.y2{bottom:64.672000pt;}
.y2c{bottom:78.912000pt;}
.y71{bottom:79.072000pt;}
.ya6{bottom:79.680000pt;}
.yad{bottom:79.706667pt;}
.yc8{bottom:79.720000pt;}
.y9a{bottom:83.872000pt;}
.y2b{bottom:85.632000pt;}
.y70{bottom:85.792000pt;}
.y117{bottom:86.432000pt;}
.y2a{bottom:94.272000pt;}
.y57{bottom:94.432000pt;}
.yc0{bottom:94.880000pt;}
.ya5{bottom:95.040000pt;}
.yd3{bottom:95.066667pt;}
.yc7{bottom:95.080000pt;}
.y76{bottom:95.392000pt;}
.y6c{bottom:100.992000pt;}
.y56{bottom:101.152000pt;}
.y99{bottom:101.472000pt;}
.y116{bottom:104.832000pt;}
.y55{bottom:109.632000pt;}
.y29{bottom:109.792000pt;}
.ybf{bottom:110.240000pt;}
.ya4{bottom:110.400000pt;}
.yd2{bottom:110.426667pt;}
.yc6{bottom:110.440000pt;}
.y6f{bottom:110.752000pt;}
.yfa{bottom:113.152000pt;}
.y75{bottom:113.792000pt;}
.yde{bottom:116.352000pt;}
.y28{bottom:116.512000pt;}
.y98{bottom:119.072000pt;}
.y115{bottom:123.392000pt;}
.y54{bottom:124.992000pt;}
.ybe{bottom:125.600000pt;}
.ycf{bottom:125.626667pt;}
.ya3{bottom:125.760000pt;}
.yd1{bottom:125.786667pt;}
.yc5{bottom:125.800000pt;}
.y27{bottom:126.112000pt;}
.y97{bottom:136.826667pt;}
.ybc{bottom:140.186667pt;}
.yf9{bottom:140.826667pt;}
.ya2{bottom:140.960000pt;}
.yce{bottom:140.986667pt;}
.y53{bottom:141.466667pt;}
.y114{bottom:141.626667pt;}
.ydc{bottom:146.586667pt;}
.yeb{bottom:146.906667pt;}
.ydd{bottom:153.946667pt;}
.y96{bottom:154.426667pt;}
.ybb{bottom:155.546667pt;}
.y25{bottom:156.186667pt;}
.ya1{bottom:156.320000pt;}
.y113{bottom:160.026667pt;}
.y26{bottom:163.546667pt;}
.yf6{bottom:165.786667pt;}
.y52{bottom:168.346667pt;}
.y6b{bottom:168.986667pt;}
.yba{bottom:170.906667pt;}
.y95{bottom:172.026667pt;}
.ydb{bottom:174.266667pt;}
.y112{bottom:178.426667pt;}
.y24{bottom:183.866667pt;}
.yb9{bottom:186.266667pt;}
.yea{bottom:186.426667pt;}
.y94{bottom:189.626667pt;}
.ye9{bottom:192.506667pt;}
.yf5{bottom:193.466667pt;}
.y51{bottom:196.026667pt;}
.y6a{bottom:196.666667pt;}
.y111{bottom:196.826667pt;}
.yb8{bottom:201.626667pt;}
.yda{bottom:201.786667pt;}
.y6e{bottom:204.026667pt;}
.y93{bottom:207.226667pt;}
.y23{bottom:211.386667pt;}
.y110{bottom:215.226667pt;}
.yb7{bottom:216.986667pt;}
.yf4{bottom:220.986667pt;}
.y50{bottom:223.546667pt;}
.y69{bottom:224.186667pt;}
.y92{bottom:224.986667pt;}
.yd9{bottom:229.466667pt;}
.yb6{bottom:232.186667pt;}
.ye8{bottom:232.346667pt;}
.y10f{bottom:233.626667pt;}
.ye5{bottom:238.906667pt;}
.y22{bottom:239.066667pt;}
.y91{bottom:242.586667pt;}
.yb5{bottom:247.546667pt;}
.yf3{bottom:248.506667pt;}
.ye7{bottom:248.826667pt;}
.y4f{bottom:251.226667pt;}
.y68{bottom:251.866667pt;}
.y10e{bottom:252.026667pt;}
.yb4{bottom:254.266667pt;}
.yd8{bottom:256.986667pt;}
.y90{bottom:260.186667pt;}
.ye4{bottom:263.066667pt;}
.yb3{bottom:264.026667pt;}
.y21{bottom:266.746667pt;}
.y8f{bottom:266.906667pt;}
.y10d{bottom:270.426667pt;}
.yd0{bottom:272.520000pt;}
.y8e{bottom:275.866667pt;}
.yf2{bottom:277.306667pt;}
.ye3{bottom:278.426667pt;}
.y4e{bottom:278.746667pt;}
.y67{bottom:279.386667pt;}
.yac{bottom:279.400000pt;}
.y6d{bottom:279.546667pt;}
.y8d{bottom:282.586667pt;}
.ye2{bottom:285.146667pt;}
.y10c{bottom:288.826667pt;}
.y8c{bottom:291.226667pt;}
.y20{bottom:294.466667pt;}
.ye1{bottom:294.786667pt;}
.y8b{bottom:297.986667pt;}
.yf1{bottom:304.866667pt;}
.y4c{bottom:306.466667pt;}
.y66{bottom:307.106667pt;}
.y10b{bottom:307.266667pt;}
.y8a{bottom:307.586667pt;}
.y4d{bottom:313.826667pt;}
.y1f{bottom:321.986667pt;}
.y10a{bottom:325.666667pt;}
.yf0{bottom:332.546667pt;}
.y4b{bottom:333.986667pt;}
.y88{bottom:334.146667pt;}
.y65{bottom:334.626667pt;}
.y89{bottom:341.506667pt;}
.ye0{bottom:341.986667pt;}
.y109{bottom:344.066667pt;}
.y1e{bottom:349.666667pt;}
.yef{bottom:361.186667pt;}
.y4a{bottom:361.666667pt;}
.y87{bottom:361.826667pt;}
.y64{bottom:362.306667pt;}
.y108{bottom:362.466667pt;}
.ya0{bottom:372.066667pt;}
.y1d{bottom:377.026667pt;}
.y107{bottom:380.866667pt;}
.yee{bottom:388.866667pt;}
.y49{bottom:389.186667pt;}
.y86{bottom:389.346667pt;}
.y63{bottom:389.826667pt;}
.y106{bottom:399.426667pt;}
.y1c{bottom:404.706667pt;}
.ycd{bottom:411.266667pt;}
.yed{bottom:416.386667pt;}
.y48{bottom:416.866667pt;}
.y61{bottom:417.506667pt;}
.y105{bottom:417.826667pt;}
.y62{bottom:424.866667pt;}
.y1b{bottom:432.226667pt;}
.y104{bottom:436.066667pt;}
.y47{bottom:444.386667pt;}
.y60{bottom:445.026667pt;}
.y103{bottom:454.466667pt;}
.y1a{bottom:459.906667pt;}
.y46{bottom:472.066667pt;}
.y5f{bottom:472.706667pt;}
.y102{bottom:473.026667pt;}
.ye6{bottom:480.066667pt;}
.y19{bottom:487.426667pt;}
.y101{bottom:491.266667pt;}
.y45{bottom:499.586667pt;}
.y5e{bottom:500.226667pt;}
.y100{bottom:509.666667pt;}
.y18{bottom:515.106667pt;}
.y44{bottom:527.106667pt;}
.y5d{bottom:527.906667pt;}
.yff{bottom:528.066667pt;}
.y9e{bottom:541.373333pt;}
.y17{bottom:542.653333pt;}
.y43{bottom:554.813333pt;}
.y5c{bottom:555.453333pt;}
.yfe{bottom:555.613333pt;}
.y85{bottom:562.173333pt;}
.yca{bottom:565.213333pt;}
.y9b{bottom:569.693333pt;}
.y16{bottom:570.333333pt;}
.y84{bottom:582.333333pt;}
.y42{bottom:582.493333pt;}
.y5b{bottom:583.133333pt;}
.yfd{bottom:583.293333pt;}
.y15{bottom:600.093333pt;}
.y83{bottom:610.013333pt;}
.y41{bottom:610.653333pt;}
.yfc{bottom:610.813333pt;}
.y14{bottom:630.013333pt;}
.y82{bottom:637.533333pt;}
.y40{bottom:638.333333pt;}
.yfb{bottom:638.493333pt;}
.y13{bottom:649.213333pt;}
.y81{bottom:665.213333pt;}
.y3f{bottom:665.853333pt;}
.y12{bottom:667.293333pt;}
.y5a{bottom:673.213333pt;}
.y11{bottom:684.093333pt;}
.y80{bottom:692.733333pt;}
.yf8{bottom:692.893333pt;}
.y3e{bottom:693.533333pt;}
.yc4{bottom:703.933333pt;}
.y10{bottom:717.853333pt;}
.y7f{bottom:720.413333pt;}
.y3d{bottom:721.053333pt;}
.yf{bottom:734.653333pt;}
.y125{bottom:741.213333pt;}
.y7e{bottom:747.933333pt;}
.y3c{bottom:748.733333pt;}
.y74{bottom:748.893333pt;}
.ye{bottom:751.613333pt;}
.y124{bottom:759.613333pt;}
.yd{bottom:768.613333pt;}
.y7d{bottom:775.653333pt;}
.y3b{bottom:776.293333pt;}
.y73{bottom:776.453333pt;}
.y123{bottom:778.053333pt;}
.yf7{bottom:783.653333pt;}
.yc{bottom:794.853333pt;}
.y122{bottom:796.293333pt;}
.y7c{bottom:803.173333pt;}
.y3a{bottom:803.973333pt;}
.y72{bottom:811.333333pt;}
.y121{bottom:816.293333pt;}
.ya{bottom:822.373333pt;}
.yb{bottom:829.733333pt;}
.y7b{bottom:830.853333pt;}
.y39{bottom:831.493333pt;}
.ybd{bottom:842.693333pt;}
.y120{bottom:853.093333pt;}
.y7a{bottom:858.373333pt;}
.y38{bottom:859.013333pt;}
.y9{bottom:867.813333pt;}
.y11f{bottom:870.853333pt;}
.y8{bottom:883.173333pt;}
.y79{bottom:886.053333pt;}
.y37{bottom:886.693333pt;}
.y11e{bottom:886.853333pt;}
.y7{bottom:893.893333pt;}
.y11d{bottom:905.413333pt;}
.y78{bottom:913.573333pt;}
.y36{bottom:914.213333pt;}
.ydf{bottom:921.573333pt;}
.y11c{bottom:923.653333pt;}
.y6{bottom:941.253333pt;}
.y35{bottom:941.893333pt;}
.y11b{bottom:942.053333pt;}
.y11a{bottom:960.453333pt;}
.y34{bottom:969.413333pt;}
.y5{bottom:976.293333pt;}
.y77{bottom:976.773333pt;}
.y119{bottom:979.013333pt;}
.y4{bottom:992.773333pt;}
.y33{bottom:997.093333pt;}
.y118{bottom:997.253333pt;}
.yec{bottom:1004.480000pt;}
.y1{bottom:1031.840000pt;}
.y58{bottom:1035.040000pt;}
.y32{bottom:1039.200000pt;}
.y2d{bottom:1042.080000pt;}
.y31{bottom:1057.120000pt;}
.y30{bottom:1074.880000pt;}
.hc{height:16.640000pt;}
.hd{height:18.560000pt;}
.he{height:24.480000pt;}
.h11{height:27.680000pt;}
.h18{height:33.918750pt;}
.ha{height:36.045000pt;}
.h2{height:40.163750pt;}
.h8{height:44.722500pt;}
.hb{height:47.621250pt;}
.h17{height:48.062188pt;}
.h3{height:50.062500pt;}
.h19{height:52.134375pt;}
.h10{height:55.200000pt;}
.h6{height:55.402500pt;}
.hf{height:57.375000pt;}
.h5{height:61.410000pt;}
.h4{height:66.750000pt;}
.h9{height:78.097500pt;}
.h13{height:92.018667pt;}
.h15{height:138.080000pt;}
.h14{height:138.093333pt;}
.h16{height:153.306667pt;}
.h12{height:168.666667pt;}
.h1{height:1122.666667pt;}
.h7{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w4{width:28.320000pt;}
.w6{width:30.880000pt;}
.w8{width:309.937333pt;}
.w9{width:309.986667pt;}
.w3{width:393.920000pt;}
.w5{width:503.040000pt;}
.w7{width:620.560000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.312000pt;}
.x2c{left:6.870667pt;}
.x18{left:10.266667pt;}
.x1{left:105.472000pt;}
.x10{left:110.272000pt;}
.x11{left:112.000000pt;}
.x13{left:112.992000pt;}
.x3a{left:114.112000pt;}
.x2a{left:115.072000pt;}
.xb{left:152.666667pt;}
.x2b{left:156.185000pt;}
.x1d{left:162.266667pt;}
.x19{left:167.705000pt;}
.x24{left:168.665000pt;}
.x1a{left:173.626667pt;}
.x25{left:174.586667pt;}
.x3e{left:176.666667pt;}
.x28{left:196.185000pt;}
.x3c{left:200.666667pt;}
.x20{left:205.145000pt;}
.x29{left:208.026667pt;}
.x21{left:211.066667pt;}
.x1b{left:217.465000pt;}
.x1c{left:223.386667pt;}
.x17{left:226.560000pt;}
.x3d{left:229.306667pt;}
.x3{left:232.506667pt;}
.x33{left:235.546667pt;}
.x34{left:255.225000pt;}
.x35{left:267.106667pt;}
.x41{left:270.145000pt;}
.x42{left:281.986667pt;}
.xf{left:297.506667pt;}
.x2d{left:332.545000pt;}
.x2e{left:344.386667pt;}
.x6{left:360.226667pt;}
.x36{left:371.265000pt;}
.x31{left:375.905000pt;}
.x37{left:383.106667pt;}
.x32{left:387.746667pt;}
.x9{left:415.106667pt;}
.x2{left:416.386667pt;}
.x7{left:475.771667pt;}
.x8{left:481.693333pt;}
.x1e{left:516.571667pt;}
.x1f{left:522.493333pt;}
.x22{left:539.771667pt;}
.x23{left:545.693333pt;}
.xa{left:553.693333pt;}
.x3f{left:568.251667pt;}
.x43{left:572.413333pt;}
.x40{left:580.093333pt;}
.x44{left:581.213333pt;}
.x38{left:585.691667pt;}
.x39{left:597.533333pt;}
.x4{left:601.053333pt;}
.x3b{left:612.773333pt;}
.x2f{left:682.691667pt;}
.x14{left:685.091667pt;}
.x15{left:691.013333pt;}
.xd{left:692.611667pt;}
.x30{left:694.533333pt;}
.xe{left:698.533333pt;}
.x26{left:702.371667pt;}
.x27{left:714.213333pt;}
.x5{left:719.813333pt;}
.xc{left:721.413333pt;}
.x16{left:727.333333pt;}
}




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