
    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_83bbd293e519a18629ece6b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_f9bdf84016b1dfb7f111d38d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_8f122c8ba0dcb54e239b2ffe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_bfe6635d73c3bfa32509f087.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_9549a0af520c5a29a3399c00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7ddab78af10244581038fdbc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.220703;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_e8f3e7f5ce4480c4fc5c4713.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952148;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_6dcce31c7edb6bb507c6fae3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.220703;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_0e07abcf3140d6a16d34db35.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952148;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_e41761228b41b20408309ab9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.962402;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_530f079b09da8c65efc01c75.woff2')format("woff");}.fff{font-family:fff;line-height:0.987305;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_8997661ae116a21c8b7c529e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.937012;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.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,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);}
.m2{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.429425px;}
.ls15{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.152400px;}
.ls12{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.041499px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.043303px;}
.ls8{letter-spacing:0.045108px;}
.ls7{letter-spacing:0.057160px;}
.lse{letter-spacing:0.086607px;}
.ls0{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.135684px;}
.lsf{letter-spacing:0.181153px;}
.ls6{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.276885px;}
.lsa{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.369600px;}
.ls1{letter-spacing:0.613440px;}
.ls13{letter-spacing:0.733440px;}
.ls18{letter-spacing:12.609507px;}
.ls17{letter-spacing:12.719818px;}
.ls19{letter-spacing:36.178508px;}
.ls16{letter-spacing:36.216552px;}
.ls3{letter-spacing:49.961280px;}
.ls2{letter-spacing:59.345280px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws12{word-spacing:-26.621280px;}
.ws8{word-spacing:-23.788320px;}
.ws7{word-spacing:-23.418720px;}
.ws6{word-spacing:-18.720120px;}
.ws1{word-spacing:-18.414720px;}
.ws10{word-spacing:-18.305520px;}
.ws11{word-spacing:-18.262320px;}
.ws5{word-spacing:-18.152520px;}
.ws13{word-spacing:-18.109320px;}
.ws0{word-spacing:-16.613280px;}
.ws15{word-spacing:-12.483912px;}
.ws19{word-spacing:-9.405173px;}
.wsb{word-spacing:-8.612180px;}
.wsc{word-spacing:-0.095773px;}
.ws3{word-spacing:-0.066240px;}
.wse{word-spacing:-0.050665px;}
.ws16{word-spacing:-0.041616px;}
.ws14{word-spacing:-0.041533px;}
.ws9{word-spacing:-0.009166px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.389153px;}
.ws18{word-spacing:9.137204px;}
.ws17{word-spacing:9.220269px;}
.wsf{word-spacing:11.082639px;}
.wsd{word-spacing:12.496495px;}
._a{margin-left:-3.994560px;}
._5{margin-left:-2.980800px;}
._1{margin-left:-1.056240px;}
._2{width:1.015920px;}
._8{width:2.185920px;}
._3{width:3.227040px;}
._0{width:4.422240px;}
._4{width:5.720880px;}
._6{width:7.551360px;}
._7{width:8.677440px;}
._9{width:9.732000px;}
._d{width:13.248000px;}
._c{width:15.629040px;}
._b{width:16.743600px;}
._e{width:20.253360px;}
._f{width:44.150400px;}
.fc7{color:rgb(26,100,122);}
.fc3{color:rgb(155,191,94);}
.fc2{color:rgb(90,145,62);}
.fc8{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(53,129,84);}
.fc4{color:rgb(8,131,136);}
.fc1{color:rgb(17,152,141);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:23.760000px;}
.fs9{font-size:38.106992px;}
.fs7{font-size:40.272162px;}
.fsa{font-size:41.532744px;}
.fsd{font-size:41.615809px;}
.fs8{font-size:43.303400px;}
.fs6{font-size:50.664978px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:55.238549px;}
.fsc{font-size:55.321614px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.240000px;}
.ye5{bottom:8.982054px;}
.y6d{bottom:13.760694px;}
.y5{bottom:14.436000px;}
.ye4{bottom:19.365240px;}
.y6{bottom:23.076000px;}
.y6c{bottom:28.916884px;}
.yd1{bottom:30.018388px;}
.y4{bottom:31.716000px;}
.ye3{bottom:32.344222px;}
.ye2{bottom:42.727408px;}
.y7{bottom:54.360000px;}
.ye1{bottom:55.706390px;}
.y3{bottom:59.940000px;}
.ye0{bottom:89.870533px;}
.y8f{bottom:92.556000px;}
.y4b{bottom:94.176000px;}
.yd7{bottom:97.406995px;}
.y63{bottom:98.223904px;}
.y67{bottom:98.223913px;}
.y6b{bottom:98.223922px;}
.y5f{bottom:98.223931px;}
.ydf{bottom:102.866820px;}
.y10a{bottom:105.516000px;}
.y62{bottom:106.668067px;}
.y66{bottom:106.668076px;}
.y6a{bottom:106.668085px;}
.y5e{bottom:106.668094px;}
.y52{bottom:106.668138px;}
.yb2{bottom:109.836000px;}
.yde{bottom:113.250006px;}
.y8e{bottom:113.976000px;}
.yd6{bottom:114.037398px;}
.y61{bottom:115.220489px;}
.y65{bottom:115.220498px;}
.y69{bottom:115.220507px;}
.y5d{bottom:115.220515px;}
.y54{bottom:115.220533px;}
.y56{bottom:115.220542px;}
.y58{bottom:115.220551px;}
.y51{bottom:115.220560px;}
.y4a{bottom:115.776000px;}
.yca{bottom:119.196000px;}
.y60{bottom:123.772910px;}
.y64{bottom:123.772919px;}
.y68{bottom:123.772928px;}
.y5c{bottom:123.772937px;}
.y53{bottom:123.772955px;}
.y55{bottom:123.772964px;}
.y57{bottom:123.772973px;}
.y50{bottom:123.772981px;}
.y109{bottom:126.036000px;}
.ydd{bottom:126.228989px;}
.y2b{bottom:129.456000px;}
.yb1{bottom:131.796000px;}
.y49{bottom:136.296000px;}
.y8d{bottom:147.816000px;}
.yc9{bottom:151.590000px;}
.yb0{bottom:153.210000px;}
.y48{bottom:157.890000px;}
.y108{bottom:158.250000px;}
.ydc{bottom:160.389670px;}
.y2a{bottom:161.670000px;}
.y8c{bottom:168.150000px;}
.ydb{bottom:170.772856px;}
.yc8{bottom:171.930000px;}
.yd5{bottom:173.117726px;}
.yaf{bottom:174.810000px;}
.y47{bottom:179.490000px;}
.y29{bottom:183.270000px;}
.yda{bottom:183.751838px;}
.yd4{bottom:189.730823px;}
.y107{bottom:194.790000px;}
.yd9{bottom:196.730821px;}
.y8b{bottom:197.490000px;}
.yc7{bottom:201.450000px;}
.y28{bottom:203.790000px;}
.yd8{bottom:207.131312px;}
.yae{bottom:208.470000px;}
.y46{bottom:213.150000px;}
.y106{bottom:215.130000px;}
.y5b{bottom:222.026549px;}
.y4f{bottom:222.026593px;}
.y27{bottom:224.310000px;}
.y8a{bottom:228.630000px;}
.yad{bottom:228.810000px;}
.yc6{bottom:230.430000px;}
.ycb{bottom:231.630552px;}
.y5a{bottom:235.044633px;}
.y4e{bottom:235.044678px;}
.yd0{bottom:236.083095px;}
.y105{bottom:236.730000px;}
.y45{bottom:244.110000px;}
.y26{bottom:244.650000px;}
.ycf{bottom:246.466281px;}
.yd3{bottom:248.811151px;}
.y59{bottom:253.989871px;}
.y4d{bottom:253.989915px;}
.y104{bottom:257.250000px;}
.yce{bottom:259.462569px;}
.yac{bottom:259.950000px;}
.y25{bottom:265.170000px;}
.y89{bottom:265.350000px;}
.yd2{bottom:265.450206px;}
.ycd{bottom:269.845755px;}
.y103{bottom:278.670000px;}
.y44{bottom:280.650000px;}
.ycc{bottom:282.824737px;}
.y88{bottom:285.510000px;}
.yab{bottom:296.490000px;}
.y24{bottom:299.010000px;}
.y102{bottom:299.190000px;}
.y43{bottom:302.070000px;}
.y87{bottom:318.315000px;}
.y42{bottom:323.715000px;}
.yaa{bottom:329.115000px;}
.y23{bottom:329.835000px;}
.y101{bottom:331.455000px;}
.y86{bottom:338.655000px;}
.ya9{bottom:349.455000px;}
.y41{bottom:357.555000px;}
.y85{bottom:358.995000px;}
.y22{bottom:366.555000px;}
.y100{bottom:367.995000px;}
.ya8{bottom:371.055000px;}
.y21{bottom:386.895000px;}
.y40{bottom:389.955000px;}
.y84{bottom:390.135000px;}
.ya7{bottom:392.475000px;}
.yff{bottom:400.395000px;}
.y20{bottom:408.495000px;}
.y3f{bottom:410.295000px;}
.yfe{bottom:421.995000px;}
.ya6{bottom:423.075000px;}
.y83{bottom:426.675000px;}
.y1f{bottom:428.835000px;}
.y3e{bottom:430.815000px;}
.yfd{bottom:442.515000px;}
.y82{bottom:447.015000px;}
.y1e{bottom:450.435000px;}
.y3d{bottom:451.155000px;}
.ya5{bottom:455.655000px;}
.y3c{bottom:471.675000px;}
.yfc{bottom:476.175000px;}
.ya4{bottom:477.615000px;}
.y81{bottom:479.775000px;}
.y1d{bottom:482.655000px;}
.y3b{bottom:492.195000px;}
.ya3{bottom:499.035000px;}
.y80{bottom:499.935000px;}
.yfb{bottom:507.135000px;}
.y3a{bottom:512.715000px;}
.y1c{bottom:525.315000px;}
.ya2{bottom:529.635000px;}
.y7f{bottom:532.515000px;}
.y39{bottom:534.315000px;}
.yfa{bottom:543.675000px;}
.y7e{bottom:554.115000px;}
.y38{bottom:554.655000px;}
.yc5{bottom:555.915000px;}
.ya1{bottom:562.035000px;}
.yf9{bottom:564.015000px;}
.y1b{bottom:564.915000px;}
.y37{bottom:575.205000px;}
.y7d{bottom:575.745000px;}
.ya0{bottom:583.665000px;}
.y1a{bottom:585.285000px;}
.yf8{bottom:585.645000px;}
.yc4{bottom:586.725000px;}
.y36{bottom:595.725000px;}
.y7c{bottom:609.405000px;}
.y9f{bottom:614.265000px;}
.y35{bottom:616.245000px;}
.y19{bottom:617.865000px;}
.yf7{bottom:619.485000px;}
.yc3{bottom:629.565000px;}
.y7b{bottom:629.745000px;}
.y34{bottom:636.585000px;}
.y18{bottom:638.205000px;}
.y9e{bottom:646.665000px;}
.yf6{bottom:648.645000px;}
.y33{bottom:657.105000px;}
.y17{bottom:658.725000px;}
.y7a{bottom:660.885000px;}
.y9d{bottom:668.265000px;}
.yc2{bottom:668.805000px;}
.yf5{bottom:681.225000px;}
.y32{bottom:687.345000px;}
.y4c{bottom:688.133655px;}
.yc1{bottom:690.405000px;}
.y16{bottom:691.305000px;}
.y9c{bottom:698.865000px;}
.yf4{bottom:702.825000px;}
.y79{bottom:703.545000px;}
.y15{bottom:711.645000px;}
.yc0{bottom:721.005000px;}
.y9b{bottom:731.445000px;}
.y14{bottom:732.165000px;}
.y118{bottom:736.305000px;}
.yf3{bottom:736.485000px;}
.y78{bottom:743.145000px;}
.y13{bottom:752.505000px;}
.y9a{bottom:753.045000px;}
.ybf{bottom:753.585000px;}
.y117{bottom:756.645000px;}
.yf2{bottom:756.825000px;}
.ybe{bottom:773.925000px;}
.y12{bottom:774.105000px;}
.y99{bottom:774.645000px;}
.y77{bottom:775.365000px;}
.y116{bottom:776.985000px;}
.yf1{bottom:789.405000px;}
.y11{bottom:794.625000px;}
.ybd{bottom:795.525000px;}
.y98{bottom:796.065000px;}
.y76{bottom:796.965000px;}
.y115{bottom:797.505000px;}
.yf0{bottom:809.745000px;}
.ybc{bottom:816.045000px;}
.y114{bottom:818.025000px;}
.y97{bottom:826.710000px;}
.y10{bottom:828.510000px;}
.y75{bottom:830.850000px;}
.yef{bottom:839.310000px;}
.ybb{bottom:846.690000px;}
.y113{bottom:856.770000px;}
.y96{bottom:859.470000px;}
.yf{bottom:860.910000px;}
.y74{bottom:861.630000px;}
.yee{bottom:871.890000px;}
.yba{bottom:879.270000px;}
.ye{bottom:881.250000px;}
.y95{bottom:890.250000px;}
.yed{bottom:893.490000px;}
.y112{bottom:896.370000px;}
.y73{bottom:898.350000px;}
.yd{bottom:901.590000px;}
.yb9{bottom:911.850000px;}
.y72{bottom:918.510000px;}
.yc{bottom:922.110000px;}
.yec{bottom:927.150000px;}
.y111{bottom:928.770000px;}
.y94{bottom:933.090000px;}
.yb8{bottom:942.630000px;}
.y110{bottom:949.110000px;}
.y71{bottom:949.650000px;}
.yeb{bottom:959.550000px;}
.yb{bottom:960.990000px;}
.y10f{bottom:969.630000px;}
.y93{bottom:972.510000px;}
.y31{bottom:978.990000px;}
.yb7{bottom:979.350000px;}
.y70{bottom:986.370000px;}
.yea{bottom:988.890000px;}
.yb6{bottom:999.690000px;}
.y10e{bottom:1002.210000px;}
.y92{bottom:1005.090000px;}
.ya{bottom:1006.530000px;}
.y30{bottom:1009.950000px;}
.ye9{bottom:1021.470000px;}
.y10d{bottom:1022.550000px;}
.yb5{bottom:1032.090000px;}
.y91{bottom:1034.250000px;}
.y6f{bottom:1037.670000px;}
.ye8{bottom:1043.070000px;}
.y10c{bottom:1044.150000px;}
.y2f{bottom:1046.490000px;}
.y9{bottom:1047.390000px;}
.yb4{bottom:1053.690000px;}
.ye7{bottom:1064.670000px;}
.y10b{bottom:1065.750000px;}
.y2e{bottom:1066.830000px;}
.y90{bottom:1067.010000px;}
.y8{bottom:1074.420000px;}
.y6e{bottom:1080.540000px;}
.ye6{bottom:1086.300000px;}
.y2d{bottom:1087.380000px;}
.yb3{bottom:1087.560000px;}
.y2{bottom:1100.340000px;}
.y1{bottom:1119.420000px;}
.h8{height:17.316000px;}
.h4{height:21.230859px;}
.hc{height:37.902316px;}
.hf{height:41.309667px;}
.h12{height:41.392287px;}
.hb{height:43.070814px;}
.hd{height:49.809375px;}
.ha{height:50.392852px;}
.h3{height:53.398828px;}
.h10{height:54.941857px;}
.h11{height:55.024477px;}
.h2{height:56.916000px;}
.h1{height:59.189062px;}
.h7{height:63.344531px;}
.h5{height:72.007031px;}
.h6{height:75.273047px;}
.h9{height:273.785830px;}
.he{height:307.238470px;}
.h0{height:1188.000000px;}
.w4{width:77.580000px;}
.w2{width:95.436000px;}
.w3{width:574.305000px;}
.w5{width:747.781009px;}
.w6{width:747.795459px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xe{left:11.267720px;}
.xf{left:17.849235px;}
.x6{left:40.500000px;}
.x2{left:83.190000px;}
.x1{left:84.959986px;}
.x19{left:92.785927px;}
.x11{left:99.187198px;}
.x9{left:111.995986px;}
.x20{left:119.015986px;}
.xa{left:138.995986px;}
.xd{left:165.989986px;}
.x3{left:180.390000px;}
.xc{left:192.989986px;}
.x8{left:197.309986px;}
.x10{left:261.866731px;}
.x17{left:269.342965px;}
.x18{left:283.164088px;}
.x1a{left:290.706819px;}
.x7{left:296.174986px;}
.x1b{left:304.527941px;}
.x1c{left:311.888816px;}
.x1d{left:325.709938px;}
.x1e{left:332.031630px;}
.x1f{left:345.852753px;}
.x12{left:419.972761px;}
.x13{left:426.530822px;}
.x16{left:507.870589px;}
.x15{left:589.228397px;}
.x14{left:670.568164px;}
.x5{left:754.710000px;}
.xb{left:833.009986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.381711pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.036888pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.038492pt;}
.ls8{letter-spacing:0.040096pt;}
.ls7{letter-spacing:0.050809pt;}
.lse{letter-spacing:0.076984pt;}
.ls0{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.120608pt;}
.lsf{letter-spacing:0.161024pt;}
.ls6{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.246120pt;}
.lsa{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.328533pt;}
.ls1{letter-spacing:0.545280pt;}
.ls13{letter-spacing:0.651947pt;}
.ls18{letter-spacing:11.208451pt;}
.ls17{letter-spacing:11.306505pt;}
.ls19{letter-spacing:32.158674pt;}
.ls16{letter-spacing:32.192491pt;}
.ls3{letter-spacing:44.410027pt;}
.ls2{letter-spacing:52.751360pt;}
.ws2{word-spacing:-58.880000pt;}
.ws12{word-spacing:-23.663360pt;}
.ws8{word-spacing:-21.145173pt;}
.ws7{word-spacing:-20.816640pt;}
.ws6{word-spacing:-16.640107pt;}
.ws1{word-spacing:-16.368640pt;}
.ws10{word-spacing:-16.271573pt;}
.ws11{word-spacing:-16.233173pt;}
.ws5{word-spacing:-16.135573pt;}
.ws13{word-spacing:-16.097173pt;}
.ws0{word-spacing:-14.767360pt;}
.ws15{word-spacing:-11.096811pt;}
.ws19{word-spacing:-8.360154pt;}
.wsb{word-spacing:-7.655271pt;}
.wsc{word-spacing:-0.085131pt;}
.ws3{word-spacing:-0.058880pt;}
.wse{word-spacing:-0.045036pt;}
.ws16{word-spacing:-0.036992pt;}
.ws14{word-spacing:-0.036918pt;}
.ws9{word-spacing:-0.008147pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.345914pt;}
.ws18{word-spacing:8.121959pt;}
.ws17{word-spacing:8.195795pt;}
.wsf{word-spacing:9.851235pt;}
.wsd{word-spacing:11.107996pt;}
._a{margin-left:-3.550720pt;}
._5{margin-left:-2.649600pt;}
._1{margin-left:-0.938880pt;}
._2{width:0.903040pt;}
._8{width:1.943040pt;}
._3{width:2.868480pt;}
._0{width:3.930880pt;}
._4{width:5.085227pt;}
._6{width:6.712320pt;}
._7{width:7.713280pt;}
._9{width:8.650667pt;}
._d{width:11.776000pt;}
._c{width:13.892480pt;}
._b{width:14.883200pt;}
._e{width:18.002987pt;}
._f{width:39.244800pt;}
.fs3{font-size:21.120000pt;}
.fs9{font-size:33.872882pt;}
.fs7{font-size:35.797478pt;}
.fsa{font-size:36.917994pt;}
.fsd{font-size:36.991830pt;}
.fs8{font-size:38.491911pt;}
.fs6{font-size:45.035536pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:49.100932pt;}
.fsc{font-size:49.174768pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:2.880000pt;}
.ye5{bottom:7.984048pt;}
.y6d{bottom:12.231728pt;}
.y5{bottom:12.832000pt;}
.ye4{bottom:17.213546pt;}
.y6{bottom:20.512000pt;}
.y6c{bottom:25.703897pt;}
.yd1{bottom:26.683012pt;}
.y4{bottom:28.192000pt;}
.ye3{bottom:28.750419pt;}
.ye2{bottom:37.979918pt;}
.y7{bottom:48.320000pt;}
.ye1{bottom:49.516791pt;}
.y3{bottom:53.280000pt;}
.ye0{bottom:79.884918pt;}
.y8f{bottom:82.272000pt;}
.y4b{bottom:83.712000pt;}
.yd7{bottom:86.583996pt;}
.y63{bottom:87.310137pt;}
.y67{bottom:87.310145pt;}
.y6b{bottom:87.310153pt;}
.y5f{bottom:87.310161pt;}
.ydf{bottom:91.437174pt;}
.y10a{bottom:93.792000pt;}
.y62{bottom:94.816060pt;}
.y66{bottom:94.816068pt;}
.y6a{bottom:94.816076pt;}
.y5e{bottom:94.816083pt;}
.y52{bottom:94.816123pt;}
.yb2{bottom:97.632000pt;}
.yde{bottom:100.666672pt;}
.y8e{bottom:101.312000pt;}
.yd6{bottom:101.366576pt;}
.y61{bottom:102.418212pt;}
.y65{bottom:102.418220pt;}
.y69{bottom:102.418228pt;}
.y5d{bottom:102.418236pt;}
.y54{bottom:102.418252pt;}
.y56{bottom:102.418260pt;}
.y58{bottom:102.418268pt;}
.y51{bottom:102.418275pt;}
.y4a{bottom:102.912000pt;}
.yca{bottom:105.952000pt;}
.y60{bottom:110.020365pt;}
.y64{bottom:110.020373pt;}
.y68{bottom:110.020380pt;}
.y5c{bottom:110.020388pt;}
.y53{bottom:110.020404pt;}
.y55{bottom:110.020412pt;}
.y57{bottom:110.020420pt;}
.y50{bottom:110.020428pt;}
.y109{bottom:112.032000pt;}
.ydd{bottom:112.203545pt;}
.y2b{bottom:115.072000pt;}
.yb1{bottom:117.152000pt;}
.y49{bottom:121.152000pt;}
.y8d{bottom:131.392000pt;}
.yc9{bottom:134.746667pt;}
.yb0{bottom:136.186667pt;}
.y48{bottom:140.346667pt;}
.y108{bottom:140.666667pt;}
.ydc{bottom:142.568596pt;}
.y2a{bottom:143.706667pt;}
.y8c{bottom:149.466667pt;}
.ydb{bottom:151.798094pt;}
.yc8{bottom:152.826667pt;}
.yd5{bottom:153.882423pt;}
.yaf{bottom:155.386667pt;}
.y47{bottom:159.546667pt;}
.y29{bottom:162.906667pt;}
.yda{bottom:163.334967pt;}
.yd4{bottom:168.649620pt;}
.y107{bottom:173.146667pt;}
.yd9{bottom:174.871841pt;}
.y8b{bottom:175.546667pt;}
.yc7{bottom:179.066667pt;}
.y28{bottom:181.146667pt;}
.yd8{bottom:184.116722pt;}
.yae{bottom:185.306667pt;}
.y46{bottom:189.466667pt;}
.y106{bottom:191.226667pt;}
.y5b{bottom:197.356932pt;}
.y4f{bottom:197.356972pt;}
.y27{bottom:199.386667pt;}
.y8a{bottom:203.226667pt;}
.yad{bottom:203.386667pt;}
.yc6{bottom:204.826667pt;}
.ycb{bottom:205.893824pt;}
.y5a{bottom:208.928563pt;}
.y4e{bottom:208.928602pt;}
.yd0{bottom:209.851640pt;}
.y105{bottom:210.426667pt;}
.y45{bottom:216.986667pt;}
.y26{bottom:217.466667pt;}
.ycf{bottom:219.081139pt;}
.yd3{bottom:221.165467pt;}
.y59{bottom:225.768774pt;}
.y4d{bottom:225.768814pt;}
.y104{bottom:228.666667pt;}
.yce{bottom:230.633394pt;}
.yac{bottom:231.066667pt;}
.y25{bottom:235.706667pt;}
.y89{bottom:235.866667pt;}
.yd2{bottom:235.955739pt;}
.ycd{bottom:239.862893pt;}
.y103{bottom:247.706667pt;}
.y44{bottom:249.466667pt;}
.ycc{bottom:251.399766pt;}
.y88{bottom:253.786667pt;}
.yab{bottom:263.546667pt;}
.y24{bottom:265.786667pt;}
.y102{bottom:265.946667pt;}
.y43{bottom:268.506667pt;}
.y87{bottom:282.946667pt;}
.y42{bottom:287.746667pt;}
.yaa{bottom:292.546667pt;}
.y23{bottom:293.186667pt;}
.y101{bottom:294.626667pt;}
.y86{bottom:301.026667pt;}
.ya9{bottom:310.626667pt;}
.y41{bottom:317.826667pt;}
.y85{bottom:319.106667pt;}
.y22{bottom:325.826667pt;}
.y100{bottom:327.106667pt;}
.ya8{bottom:329.826667pt;}
.y21{bottom:343.906667pt;}
.y40{bottom:346.626667pt;}
.y84{bottom:346.786667pt;}
.ya7{bottom:348.866667pt;}
.yff{bottom:355.906667pt;}
.y20{bottom:363.106667pt;}
.y3f{bottom:364.706667pt;}
.yfe{bottom:375.106667pt;}
.ya6{bottom:376.066667pt;}
.y83{bottom:379.266667pt;}
.y1f{bottom:381.186667pt;}
.y3e{bottom:382.946667pt;}
.yfd{bottom:393.346667pt;}
.y82{bottom:397.346667pt;}
.y1e{bottom:400.386667pt;}
.y3d{bottom:401.026667pt;}
.ya5{bottom:405.026667pt;}
.y3c{bottom:419.266667pt;}
.yfc{bottom:423.266667pt;}
.ya4{bottom:424.546667pt;}
.y81{bottom:426.466667pt;}
.y1d{bottom:429.026667pt;}
.y3b{bottom:437.506667pt;}
.ya3{bottom:443.586667pt;}
.y80{bottom:444.386667pt;}
.yfb{bottom:450.786667pt;}
.y3a{bottom:455.746667pt;}
.y1c{bottom:466.946667pt;}
.ya2{bottom:470.786667pt;}
.y7f{bottom:473.346667pt;}
.y39{bottom:474.946667pt;}
.yfa{bottom:483.266667pt;}
.y7e{bottom:492.546667pt;}
.y38{bottom:493.026667pt;}
.yc5{bottom:494.146667pt;}
.ya1{bottom:499.586667pt;}
.yf9{bottom:501.346667pt;}
.y1b{bottom:502.146667pt;}
.y37{bottom:511.293333pt;}
.y7d{bottom:511.773333pt;}
.ya0{bottom:518.813333pt;}
.y1a{bottom:520.253333pt;}
.yf8{bottom:520.573333pt;}
.yc4{bottom:521.533333pt;}
.y36{bottom:529.533333pt;}
.y7c{bottom:541.693333pt;}
.y9f{bottom:546.013333pt;}
.y35{bottom:547.773333pt;}
.y19{bottom:549.213333pt;}
.yf7{bottom:550.653333pt;}
.yc3{bottom:559.613333pt;}
.y7b{bottom:559.773333pt;}
.y34{bottom:565.853333pt;}
.y18{bottom:567.293333pt;}
.y9e{bottom:574.813333pt;}
.yf6{bottom:576.573333pt;}
.y33{bottom:584.093333pt;}
.y17{bottom:585.533333pt;}
.y7a{bottom:587.453333pt;}
.y9d{bottom:594.013333pt;}
.yc2{bottom:594.493333pt;}
.yf5{bottom:605.533333pt;}
.y32{bottom:610.973333pt;}
.y4c{bottom:611.674360pt;}
.yc1{bottom:613.693333pt;}
.y16{bottom:614.493333pt;}
.y9c{bottom:621.213333pt;}
.yf4{bottom:624.733333pt;}
.y79{bottom:625.373333pt;}
.y15{bottom:632.573333pt;}
.yc0{bottom:640.893333pt;}
.y9b{bottom:650.173333pt;}
.y14{bottom:650.813333pt;}
.y118{bottom:654.493333pt;}
.yf3{bottom:654.653333pt;}
.y78{bottom:660.573333pt;}
.y13{bottom:668.893333pt;}
.y9a{bottom:669.373333pt;}
.ybf{bottom:669.853333pt;}
.y117{bottom:672.573333pt;}
.yf2{bottom:672.733333pt;}
.ybe{bottom:687.933333pt;}
.y12{bottom:688.093333pt;}
.y99{bottom:688.573333pt;}
.y77{bottom:689.213333pt;}
.y116{bottom:690.653333pt;}
.yf1{bottom:701.693333pt;}
.y11{bottom:706.333333pt;}
.ybd{bottom:707.133333pt;}
.y98{bottom:707.613333pt;}
.y76{bottom:708.413333pt;}
.y115{bottom:708.893333pt;}
.yf0{bottom:719.773333pt;}
.ybc{bottom:725.373333pt;}
.y114{bottom:727.133333pt;}
.y97{bottom:734.853333pt;}
.y10{bottom:736.453333pt;}
.y75{bottom:738.533333pt;}
.yef{bottom:746.053333pt;}
.ybb{bottom:752.613333pt;}
.y113{bottom:761.573333pt;}
.y96{bottom:763.973333pt;}
.yf{bottom:765.253333pt;}
.y74{bottom:765.893333pt;}
.yee{bottom:775.013333pt;}
.yba{bottom:781.573333pt;}
.ye{bottom:783.333333pt;}
.y95{bottom:791.333333pt;}
.yed{bottom:794.213333pt;}
.y112{bottom:796.773333pt;}
.y73{bottom:798.533333pt;}
.yd{bottom:801.413333pt;}
.yb9{bottom:810.533333pt;}
.y72{bottom:816.453333pt;}
.yc{bottom:819.653333pt;}
.yec{bottom:824.133333pt;}
.y111{bottom:825.573333pt;}
.y94{bottom:829.413333pt;}
.yb8{bottom:837.893333pt;}
.y110{bottom:843.653333pt;}
.y71{bottom:844.133333pt;}
.yeb{bottom:852.933333pt;}
.yb{bottom:854.213333pt;}
.y10f{bottom:861.893333pt;}
.y93{bottom:864.453333pt;}
.y31{bottom:870.213333pt;}
.yb7{bottom:870.533333pt;}
.y70{bottom:876.773333pt;}
.yea{bottom:879.013333pt;}
.yb6{bottom:888.613333pt;}
.y10e{bottom:890.853333pt;}
.y92{bottom:893.413333pt;}
.ya{bottom:894.693333pt;}
.y30{bottom:897.733333pt;}
.ye9{bottom:907.973333pt;}
.y10d{bottom:908.933333pt;}
.yb5{bottom:917.413333pt;}
.y91{bottom:919.333333pt;}
.y6f{bottom:922.373333pt;}
.ye8{bottom:927.173333pt;}
.y10c{bottom:928.133333pt;}
.y2f{bottom:930.213333pt;}
.y9{bottom:931.013333pt;}
.yb4{bottom:936.613333pt;}
.ye7{bottom:946.373333pt;}
.y10b{bottom:947.333333pt;}
.y2e{bottom:948.293333pt;}
.y90{bottom:948.453333pt;}
.y8{bottom:955.040000pt;}
.y6e{bottom:960.480000pt;}
.ye6{bottom:965.600000pt;}
.y2d{bottom:966.560000pt;}
.yb3{bottom:966.720000pt;}
.y2{bottom:978.080000pt;}
.y1{bottom:995.040000pt;}
.h8{height:15.392000pt;}
.h4{height:18.871875pt;}
.hc{height:33.690948pt;}
.hf{height:36.719704pt;}
.h12{height:36.793144pt;}
.hb{height:38.285168pt;}
.hd{height:44.275000pt;}
.ha{height:44.793646pt;}
.h3{height:47.465625pt;}
.h10{height:48.837207pt;}
.h11{height:48.910646pt;}
.h2{height:50.592000pt;}
.h1{height:52.612500pt;}
.h7{height:56.306250pt;}
.h5{height:64.006250pt;}
.h6{height:66.909375pt;}
.h9{height:243.365182pt;}
.he{height:273.100862pt;}
.h0{height:1056.000000pt;}
.w4{width:68.960000pt;}
.w2{width:84.832000pt;}
.w3{width:510.493333pt;}
.w5{width:664.694230pt;}
.w6{width:664.707074pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xe{left:10.015751pt;}
.xf{left:15.865986pt;}
.x6{left:36.000000pt;}
.x2{left:73.946667pt;}
.x1{left:75.519988pt;}
.x19{left:82.476380pt;}
.x11{left:88.166398pt;}
.x9{left:99.551988pt;}
.x20{left:105.791988pt;}
.xa{left:123.551988pt;}
.xd{left:147.546655pt;}
.x3{left:160.346667pt;}
.xc{left:171.546655pt;}
.x8{left:175.386655pt;}
.x10{left:232.770428pt;}
.x17{left:239.415969pt;}
.x18{left:251.701411pt;}
.x1a{left:258.406061pt;}
.x7{left:263.266655pt;}
.x1b{left:270.691503pt;}
.x1c{left:277.234503pt;}
.x1d{left:289.519945pt;}
.x1e{left:295.139227pt;}
.x1f{left:307.424669pt;}
.x12{left:373.309121pt;}
.x13{left:379.138508pt;}
.x16{left:451.440523pt;}
.x15{left:523.758575pt;}
.x14{left:596.060590pt;}
.x5{left:670.853333pt;}
.xb{left:740.453321pt;}
}




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