
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9b7eaf339a6c57da4453afcd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_e51037dff828bcd1f8ccdab7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1b36e36287b4483755138a03.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c1470fdee49d6f8659edc17a.woff')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_2fcf381b45517fbb5f77324b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_043a56f3abf34ebfcb1372cf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_2c01c3ccd087ec575bcc002a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6fd47a47e287475ae78c4ecc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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;}
.m3{transform:matrix(0.000000,-0.203936,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.203936,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.203936,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);}
.m2{transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306468,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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v3{vertical-align:34.653763px;}
.ls19{letter-spacing:-1.105789px;}
.ls18{letter-spacing:-0.951935px;}
.ls12{letter-spacing:-0.232800px;}
.lsd{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.101400px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.084000px;}
.ls11{letter-spacing:-0.063600px;}
.ls14{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.lsf{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.166200px;}
.ls16{letter-spacing:0.170400px;}
.lse{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1c{letter-spacing:47.726640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.396800px;}
.ws11{word-spacing:-13.392600px;}
.wsa{word-spacing:-13.353600px;}
.ws19{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.220280px;}
.wsb{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.125000px;}
.ws6{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.993600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws13{word-spacing:-8.835300px;}
.wsd{word-spacing:-8.553600px;}
.ws14{word-spacing:-8.472946px;}
.ws12{word-spacing:-7.221230px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
.ws18{word-spacing:101.607056px;}
.ws16{word-spacing:112.542624px;}
.ws15{word-spacing:112.567089px;}
.ws17{word-spacing:112.762804px;}
._15{margin-left:-327.516095px;}
._c{margin-left:-3.512998px;}
._3{margin-left:-2.506200px;}
._0{margin-left:-1.110000px;}
._1{width:1.174152px;}
._9{width:2.248943px;}
._a{width:3.727200px;}
._d{width:5.110440px;}
._b{width:6.312600px;}
._7{width:8.338197px;}
._6{width:9.499200px;}
._f{width:10.610165px;}
._e{width:12.199920px;}
._8{width:14.526528px;}
._18{width:16.502760px;}
._4{width:18.096000px;}
._5{width:19.391161px;}
._2{width:20.788416px;}
._12{width:21.802753px;}
._13{width:24.408720px;}
._19{width:30.811320px;}
._11{width:42.745320px;}
._10{width:48.156120px;}
._14{width:51.162120px;}
._16{width:929.783656px;}
._17{width:2464.138440px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:25.975647px;}
.fs9{font-size:31.781653px;}
.fsa{font-size:33.902450px;}
.fsc{font-size:33.952342px;}
.fs0{font-size:38.880000px;}
.fsb{font-size:41.560059px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.yd1{bottom:-54.057725px;}
.ycb{bottom:-26.612765px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.830000px;}
.yd6{bottom:7.860000px;}
.y87{bottom:7.920000px;}
.yce{bottom:7.933289px;}
.ycd{bottom:20.646708px;}
.y9d{bottom:25.380000px;}
.y96{bottom:25.470000px;}
.ycc{bottom:39.635014px;}
.ya6{bottom:40.530000px;}
.ya5{bottom:62.580000px;}
.y9b{bottom:71.100000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y9a{bottom:93.150000px;}
.y1{bottom:101.640000px;}
.y99{bottom:115.290000px;}
.ycf{bottom:118.657579px;}
.y57{bottom:119.460000px;}
.yc9{bottom:135.030000px;}
.y28{bottom:142.500000px;}
.y83{bottom:153.480000px;}
.y56{bottom:155.100000px;}
.yc8{bottom:158.250000px;}
.y27{bottom:160.050000px;}
.yca{bottom:160.125000px;}
.yd0{bottom:163.694873px;}
.yf9{bottom:166.530000px;}
.ya1{bottom:168.240000px;}
.y82{bottom:171.030000px;}
.y26{bottom:177.600000px;}
.yf8{bottom:184.080000px;}
.y81{bottom:188.670000px;}
.yb9{bottom:189.030000px;}
.y55{bottom:190.650000px;}
.y25{bottom:195.240000px;}
.yf7{bottom:201.720000px;}
.ya0{bottom:203.790000px;}
.y80{bottom:206.220000px;}
.y54{bottom:208.200000px;}
.y24{bottom:212.790000px;}
.yf6{bottom:219.270000px;}
.y53{bottom:225.840000px;}
.yb8{bottom:227.190000px;}
.y23{bottom:230.340000px;}
.y7f{bottom:232.860000px;}
.y9f{bottom:239.430000px;}
.yf5{bottom:245.910000px;}
.y22{bottom:247.980000px;}
.y52{bottom:252.390000px;}
.yb7{bottom:259.410000px;}
.yf4{bottom:263.460000px;}
.y21{bottom:265.530000px;}
.y9e{bottom:265.980000px;}
.y7e{bottom:268.410000px;}
.y20{bottom:283.170000px;}
.y7d{bottom:285.960000px;}
.y51{bottom:287.940000px;}
.yf3{bottom:290.010000px;}
.y98{bottom:299.010000px;}
.y1f{bottom:300.720000px;}
.y7c{bottom:303.600000px;}
.y50{bottom:305.580000px;}
.yf2{bottom:307.650000px;}
.y7b{bottom:321.150000px;}
.yf1{bottom:325.200000px;}
.y4f{bottom:332.130000px;}
.y1e{bottom:336.270000px;}
.y7a{bottom:338.790000px;}
.y9c{bottom:343.920000px;}
.yf0{bottom:351.840000px;}
.y1d{bottom:353.910000px;}
.y79{bottom:356.340000px;}
.y4e{bottom:367.770000px;}
.yef{bottom:369.390000px;}
.y1c{bottom:371.460000px;}
.y78{bottom:373.890000px;}
.y4d{bottom:385.320000px;}
.y97{bottom:388.830000px;}
.y1b{bottom:389.100000px;}
.y77{bottom:391.530000px;}
.yee{bottom:395.940000px;}
.y4c{bottom:402.870000px;}
.y1a{bottom:406.650000px;}
.yed{bottom:413.580000px;}
.y76{bottom:418.080000px;}
.y4b{bottom:420.510000px;}
.y19{bottom:424.200000px;}
.y95{bottom:433.740000px;}
.y4a{bottom:438.060000px;}
.yec{bottom:440.130000px;}
.y18{bottom:441.840000px;}
.y75{bottom:453.720000px;}
.y49{bottom:455.700000px;}
.yeb{bottom:457.770000px;}
.y17{bottom:459.390000px;}
.y111{bottom:460.470000px;}
.y74{bottom:471.300000px;}
.y48{bottom:473.280000px;}
.yea{bottom:475.350000px;}
.y110{bottom:478.140000px;}
.y16{bottom:486.330000px;}
.y73{bottom:488.850000px;}
.yc7{bottom:490.200000px;}
.y47{bottom:499.830000px;}
.y94{bottom:500.010000px;}
.ye9{bottom:501.900000px;}
.y10f{bottom:504.690000px;}
.y72{bottom:506.490000px;}
.yc6{bottom:507.750000px;}
.ye8{bottom:519.540000px;}
.y10e{bottom:522.330000px;}
.y71{bottom:533.040000px;}
.yc5{bottom:534.300000px;}
.y15{bottom:534.930000px;}
.y46{bottom:535.470000px;}
.y93{bottom:535.650000px;}
.ye7{bottom:537.090000px;}
.yb6{bottom:537.270000px;}
.y10d{bottom:548.880000px;}
.y45{bottom:553.020000px;}
.yb5{bottom:554.910000px;}
.y92{bottom:562.200000px;}
.ye6{bottom:563.730000px;}
.y10c{bottom:566.430000px;}
.yc4{bottom:567.330000px;}
.y70{bottom:568.590000px;}
.y44{bottom:570.660000px;}
.y14{bottom:571.920000px;}
.ye5{bottom:581.280000px;}
.yb4{bottom:581.460000px;}
.y6f{bottom:586.230000px;}
.y43{bottom:588.210000px;}
.y13{bottom:589.560000px;}
.y10b{bottom:593.070000px;}
.yc3{bottom:594.600000px;}
.y91{bottom:597.840000px;}
.ye4{bottom:598.830000px;}
.y12{bottom:607.110000px;}
.y10a{bottom:610.620000px;}
.y6e{bottom:612.780000px;}
.y42{bottom:614.760000px;}
.ye3{bottom:616.470000px;}
.yb3{bottom:617.100000px;}
.yc2{bottom:621.960000px;}
.y90{bottom:624.390000px;}
.y11{bottom:624.750000px;}
.y109{bottom:637.260000px;}
.y10{bottom:642.300000px;}
.ye2{bottom:643.380000px;}
.yb2{bottom:643.650000px;}
.y6d{bottom:648.420000px;}
.yc1{bottom:649.320000px;}
.y41{bottom:650.400000px;}
.y108{bottom:654.810000px;}
.y8f{bottom:657.330000px;}
.yf{bottom:659.850000px;}
.y6c{bottom:665.970000px;}
.y40{bottom:667.950000px;}
.yb1{bottom:676.590000px;}
.yc0{bottom:676.680000px;}
.ye{bottom:677.490000px;}
.y107{bottom:681.360000px;}
.y6b{bottom:683.520000px;}
.y8e{bottom:684.690000px;}
.y3f{bottom:685.590000px;}
.ye1{bottom:691.620000px;}
.yd{bottom:695.040000px;}
.y106{bottom:699.000000px;}
.y6a{bottom:701.160000px;}
.y3e{bottom:703.140000px;}
.yb0{bottom:703.950000px;}
.y8d{bottom:712.050000px;}
.yc{bottom:712.680000px;}
.ye0{bottom:718.530000px;}
.y3d{bottom:720.690000px;}
.y105{bottom:725.550000px;}
.y69{bottom:727.710000px;}
.yb{bottom:730.230000px;}
.ybf{bottom:731.310000px;}
.y3c{bottom:738.330000px;}
.y8c{bottom:739.320000px;}
.y104{bottom:743.190000px;}
.yaf{bottom:752.640000px;}
.y3b{bottom:755.880000px;}
.ya{bottom:757.140000px;}
.ybe{bottom:758.670000px;}
.y68{bottom:760.290000px;}
.y103{bottom:760.740000px;}
.y8b{bottom:766.680000px;}
.y3a{bottom:773.520000px;}
.ybd{bottom:785.940000px;}
.y102{bottom:787.290000px;}
.yae{bottom:788.280000px;}
.y39{bottom:791.070000px;}
.y8a{bottom:794.040000px;}
.y67{bottom:795.930000px;}
.ydf{bottom:804.120000px;}
.y101{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.yad{bottom:805.830000px;}
.y66{bottom:813.480000px;}
.y38{bottom:817.620000px;}
.y88{bottom:821.400000px;}
.yde{bottom:821.760000px;}
.y65{bottom:831.030000px;}
.y100{bottom:831.480000px;}
.yac{bottom:832.380000px;}
.ybc{bottom:834.720000px;}
.ydd{bottom:839.310000px;}
.y8{bottom:841.200000px;}
.y64{bottom:848.670000px;}
.yff{bottom:849.030000px;}
.y37{bottom:853.260000px;}
.ydc{bottom:856.950000px;}
.yab{bottom:865.410000px;}
.y63{bottom:866.220000px;}
.ybb{bottom:870.270000px;}
.y36{bottom:870.810000px;}
.ydb{bottom:874.500000px;}
.yfe{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.yda{bottom:892.050000px;}
.yaa{bottom:892.680000px;}
.y62{bottom:892.860000px;}
.yfd{bottom:893.220000px;}
.y35{bottom:897.450000px;}
.yba{bottom:902.490000px;}
.yd9{bottom:909.690000px;}
.yfc{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y86{bottom:924.000000px;}
.y61{bottom:928.410000px;}
.y34{bottom:933.270000px;}
.yd8{bottom:936.600000px;}
.yfb{bottom:937.410000px;}
.ya9{bottom:941.460000px;}
.y60{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.yfa{bottom:954.960000px;}
.y85{bottom:959.910000px;}
.y5f{bottom:963.600000px;}
.ya8{bottom:977.010000px;}
.y33{bottom:981.600000px;}
.yd7{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y5e{bottom:990.150000px;}
.ya4{bottom:991.950000px;}
.y32{bottom:999.150000px;}
.y84{bottom:1008.150000px;}
.yd5{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.ya7{bottom:1019.340000px;}
.y5d{bottom:1025.820000px;}
.yd4{bottom:1036.890000px;}
.y5c{bottom:1043.370000px;}
.ya3{bottom:1046.700000px;}
.y30{bottom:1052.370000px;}
.y5b{bottom:1060.920000px;}
.yd3{bottom:1064.250000px;}
.y2f{bottom:1069.920000px;}
.ya2{bottom:1073.970000px;}
.y5a{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.yd2{bottom:1091.610000px;}
.y59{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h1c{height:-46.359925px;}
.h15{height:-5.390805px;}
.hd{height:26.550000px;}
.h1e{height:26.580000px;}
.hc{height:26.640000px;}
.h13{height:26.670000px;}
.h16{height:27.091788px;}
.h2{height:30.022383px;}
.h18{height:33.147271px;}
.h19{height:35.359196px;}
.h1d{height:35.411232px;}
.h3{height:39.155273px;}
.h1b{height:43.345843px;}
.h11{height:44.100000px;}
.hf{height:44.190000px;}
.he{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.ha{height:62.703281px;}
.h9{height:68.710781px;}
.h4{height:72.985430px;}
.h14{height:74.953125px;}
.h1a{height:77.999576px;}
.h12{height:81.300000px;}
.h10{height:134.010000px;}
.h17{height:306.445184px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w19{width:33.300000px;}
.w18{width:33.840000px;}
.w17{width:36.090000px;}
.w20{width:44.051756px;}
.w1a{width:52.230000px;}
.wa{width:52.290000px;}
.w3{width:59.040000px;}
.w11{width:73.440000px;}
.w13{width:80.640000px;}
.wb{width:82.080000px;}
.w10{width:82.440000px;}
.w6{width:86.580000px;}
.w23{width:108.990000px;}
.w4{width:112.140000px;}
.w5{width:113.430000px;}
.wc{width:115.950000px;}
.wd{width:124.740000px;}
.w7{width:127.920000px;}
.w1e{width:133.560000px;}
.w1c{width:135.000000px;}
.w15{width:139.140000px;}
.w14{width:140.700000px;}
.w16{width:153.180000px;}
.w12{width:153.630000px;}
.w1d{width:157.170000px;}
.wf{width:170.760000px;}
.w1b{width:178.650000px;}
.w24{width:179.010000px;}
.we{width:184.770000px;}
.w8{width:186.750000px;}
.w25{width:189.300000px;}
.w9{width:216.210000px;}
.w1f{width:528.607599px;}
.w22{width:599.849998px;}
.w21{width:599.850000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x2e{left:-91.508954px;}
.x0{left:0.000000px;}
.x26{left:3.514306px;}
.x5{left:7.650000px;}
.x2d{left:31.277684px;}
.x1{left:68.040000px;}
.x1c{left:95.219987px;}
.x30{left:111.239987px;}
.x1e{left:116.820000px;}
.x27{left:146.212500px;}
.x8{left:156.060000px;}
.x25{left:160.896622px;}
.x1f{left:169.770000px;}
.x28{left:172.326969px;}
.xd{left:185.430000px;}
.x12{left:188.400000px;}
.x2{left:192.719987px;}
.x2f{left:207.210000px;}
.x1b{left:243.749987px;}
.x2c{left:276.948816px;}
.x9{left:284.700000px;}
.x4{left:303.510000px;}
.xe{left:310.890000px;}
.x16{left:317.190000px;}
.x13{left:342.840000px;}
.x20{left:349.140000px;}
.x24{left:350.759987px;}
.x6{left:363.360000px;}
.x14{left:424.200000px;}
.x29{left:426.291517px;}
.x17{left:471.180000px;}
.xa{left:472.260000px;}
.x7{left:476.310000px;}
.x21{left:484.950000px;}
.xf{left:496.380000px;}
.x18{left:508.110000px;}
.x2b{left:512.075804px;}
.x2a{left:517.531357px;}
.x19{left:542.760000px;}
.x15{left:565.710000px;}
.x22{left:642.930000px;}
.x10{left:667.860000px;}
.xb{left:689.280000px;}
.x1d{left:712.139987px;}
.xc{left:742.380000px;}
.x23{left:749.309987px;}
.x11{left:751.020000px;}
.x1a{left:770.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v3{vertical-align:30.803345pt;}
.ls19{letter-spacing:-0.982924pt;}
.ls18{letter-spacing:-0.846164pt;}
.ls12{letter-spacing:-0.206933pt;}
.lsd{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.090133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.074667pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls14{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.lsf{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.147733pt;}
.ls16{letter-spacing:0.151467pt;}
.lse{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.908267pt;}
.ws11{word-spacing:-11.904533pt;}
.wsa{word-spacing:-11.869867pt;}
.ws19{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.751360pt;}
.wsb{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.666667pt;}
.ws6{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.549867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws13{word-spacing:-7.853600pt;}
.wsd{word-spacing:-7.603200pt;}
.ws14{word-spacing:-7.531508pt;}
.ws12{word-spacing:-6.418871pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
.ws18{word-spacing:90.317383pt;}
.ws16{word-spacing:100.037888pt;}
.ws15{word-spacing:100.059634pt;}
.ws17{word-spacing:100.233603pt;}
._15{margin-left:-291.125418pt;}
._c{margin-left:-3.122665pt;}
._3{margin-left:-2.227734pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043691pt;}
._9{width:1.999060pt;}
._a{width:3.313066pt;}
._d{width:4.542614pt;}
._b{width:5.611200pt;}
._7{width:7.411731pt;}
._6{width:8.443734pt;}
._f{width:9.431258pt;}
._e{width:10.844373pt;}
._8{width:12.912469pt;}
._18{width:14.669120pt;}
._4{width:16.085333pt;}
._5{width:17.236587pt;}
._2{width:18.478592pt;}
._12{width:19.380225pt;}
._13{width:21.696640pt;}
._19{width:27.387840pt;}
._11{width:37.995840pt;}
._10{width:42.805440pt;}
._14{width:45.477440pt;}
._16{width:826.474361pt;}
._17{width:2190.345280pt;}
.fs8{font-size:23.089464pt;}
.fs9{font-size:28.250359pt;}
.fsa{font-size:30.135512pt;}
.fsc{font-size:30.179860pt;}
.fs0{font-size:34.560000pt;}
.fsb{font-size:36.942275pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.yd1{bottom:-48.051311pt;}
.ycb{bottom:-23.655791pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.960000pt;}
.yd6{bottom:6.986667pt;}
.y87{bottom:7.040000pt;}
.yce{bottom:7.051813pt;}
.ycd{bottom:18.352629pt;}
.y9d{bottom:22.560000pt;}
.y96{bottom:22.640000pt;}
.ycc{bottom:35.231124pt;}
.ya6{bottom:36.026667pt;}
.ya5{bottom:55.626667pt;}
.y9b{bottom:63.200000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y9a{bottom:82.800000pt;}
.y1{bottom:90.346667pt;}
.y99{bottom:102.480000pt;}
.ycf{bottom:105.473403pt;}
.y57{bottom:106.186667pt;}
.yc9{bottom:120.026667pt;}
.y28{bottom:126.666667pt;}
.y83{bottom:136.426667pt;}
.y56{bottom:137.866667pt;}
.yc8{bottom:140.666667pt;}
.y27{bottom:142.266667pt;}
.yca{bottom:142.333333pt;}
.yd0{bottom:145.506554pt;}
.yf9{bottom:148.026667pt;}
.ya1{bottom:149.546667pt;}
.y82{bottom:152.026667pt;}
.y26{bottom:157.866667pt;}
.yf8{bottom:163.626667pt;}
.y81{bottom:167.706667pt;}
.yb9{bottom:168.026667pt;}
.y55{bottom:169.466667pt;}
.y25{bottom:173.546667pt;}
.yf7{bottom:179.306667pt;}
.ya0{bottom:181.146667pt;}
.y80{bottom:183.306667pt;}
.y54{bottom:185.066667pt;}
.y24{bottom:189.146667pt;}
.yf6{bottom:194.906667pt;}
.y53{bottom:200.746667pt;}
.yb8{bottom:201.946667pt;}
.y23{bottom:204.746667pt;}
.y7f{bottom:206.986667pt;}
.y9f{bottom:212.826667pt;}
.yf5{bottom:218.586667pt;}
.y22{bottom:220.426667pt;}
.y52{bottom:224.346667pt;}
.yb7{bottom:230.586667pt;}
.yf4{bottom:234.186667pt;}
.y21{bottom:236.026667pt;}
.y9e{bottom:236.426667pt;}
.y7e{bottom:238.586667pt;}
.y20{bottom:251.706667pt;}
.y7d{bottom:254.186667pt;}
.y51{bottom:255.946667pt;}
.yf3{bottom:257.786667pt;}
.y98{bottom:265.786667pt;}
.y1f{bottom:267.306667pt;}
.y7c{bottom:269.866667pt;}
.y50{bottom:271.626667pt;}
.yf2{bottom:273.466667pt;}
.y7b{bottom:285.466667pt;}
.yf1{bottom:289.066667pt;}
.y4f{bottom:295.226667pt;}
.y1e{bottom:298.906667pt;}
.y7a{bottom:301.146667pt;}
.y9c{bottom:305.706667pt;}
.yf0{bottom:312.746667pt;}
.y1d{bottom:314.586667pt;}
.y79{bottom:316.746667pt;}
.y4e{bottom:326.906667pt;}
.yef{bottom:328.346667pt;}
.y1c{bottom:330.186667pt;}
.y78{bottom:332.346667pt;}
.y4d{bottom:342.506667pt;}
.y97{bottom:345.626667pt;}
.y1b{bottom:345.866667pt;}
.y77{bottom:348.026667pt;}
.yee{bottom:351.946667pt;}
.y4c{bottom:358.106667pt;}
.y1a{bottom:361.466667pt;}
.yed{bottom:367.626667pt;}
.y76{bottom:371.626667pt;}
.y4b{bottom:373.786667pt;}
.y19{bottom:377.066667pt;}
.y95{bottom:385.546667pt;}
.y4a{bottom:389.386667pt;}
.yec{bottom:391.226667pt;}
.y18{bottom:392.746667pt;}
.y75{bottom:403.306667pt;}
.y49{bottom:405.066667pt;}
.yeb{bottom:406.906667pt;}
.y17{bottom:408.346667pt;}
.y111{bottom:409.306667pt;}
.y74{bottom:418.933333pt;}
.y48{bottom:420.693333pt;}
.yea{bottom:422.533333pt;}
.y110{bottom:425.013333pt;}
.y16{bottom:432.293333pt;}
.y73{bottom:434.533333pt;}
.yc7{bottom:435.733333pt;}
.y47{bottom:444.293333pt;}
.y94{bottom:444.453333pt;}
.ye9{bottom:446.133333pt;}
.y10f{bottom:448.613333pt;}
.y72{bottom:450.213333pt;}
.yc6{bottom:451.333333pt;}
.ye8{bottom:461.813333pt;}
.y10e{bottom:464.293333pt;}
.y71{bottom:473.813333pt;}
.yc5{bottom:474.933333pt;}
.y15{bottom:475.493333pt;}
.y46{bottom:475.973333pt;}
.y93{bottom:476.133333pt;}
.ye7{bottom:477.413333pt;}
.yb6{bottom:477.573333pt;}
.y10d{bottom:487.893333pt;}
.y45{bottom:491.573333pt;}
.yb5{bottom:493.253333pt;}
.y92{bottom:499.733333pt;}
.ye6{bottom:501.093333pt;}
.y10c{bottom:503.493333pt;}
.yc4{bottom:504.293333pt;}
.y70{bottom:505.413333pt;}
.y44{bottom:507.253333pt;}
.y14{bottom:508.373333pt;}
.ye5{bottom:516.693333pt;}
.yb4{bottom:516.853333pt;}
.y6f{bottom:521.093333pt;}
.y43{bottom:522.853333pt;}
.y13{bottom:524.053333pt;}
.y10b{bottom:527.173333pt;}
.yc3{bottom:528.533333pt;}
.y91{bottom:531.413333pt;}
.ye4{bottom:532.293333pt;}
.y12{bottom:539.653333pt;}
.y10a{bottom:542.773333pt;}
.y6e{bottom:544.693333pt;}
.y42{bottom:546.453333pt;}
.ye3{bottom:547.973333pt;}
.yb3{bottom:548.533333pt;}
.yc2{bottom:552.853333pt;}
.y90{bottom:555.013333pt;}
.y11{bottom:555.333333pt;}
.y109{bottom:566.453333pt;}
.y10{bottom:570.933333pt;}
.ye2{bottom:571.893333pt;}
.yb2{bottom:572.133333pt;}
.y6d{bottom:576.373333pt;}
.yc1{bottom:577.173333pt;}
.y41{bottom:578.133333pt;}
.y108{bottom:582.053333pt;}
.y8f{bottom:584.293333pt;}
.yf{bottom:586.533333pt;}
.y6c{bottom:591.973333pt;}
.y40{bottom:593.733333pt;}
.yb1{bottom:601.413333pt;}
.yc0{bottom:601.493333pt;}
.ye{bottom:602.213333pt;}
.y107{bottom:605.653333pt;}
.y6b{bottom:607.573333pt;}
.y8e{bottom:608.613333pt;}
.y3f{bottom:609.413333pt;}
.ye1{bottom:614.773333pt;}
.yd{bottom:617.813333pt;}
.y106{bottom:621.333333pt;}
.y6a{bottom:623.253333pt;}
.y3e{bottom:625.013333pt;}
.yb0{bottom:625.733333pt;}
.y8d{bottom:632.933333pt;}
.yc{bottom:633.493333pt;}
.ye0{bottom:638.693333pt;}
.y3d{bottom:640.613333pt;}
.y105{bottom:644.933333pt;}
.y69{bottom:646.853333pt;}
.yb{bottom:649.093333pt;}
.ybf{bottom:650.053333pt;}
.y3c{bottom:656.293333pt;}
.y8c{bottom:657.173333pt;}
.y104{bottom:660.613333pt;}
.yaf{bottom:669.013333pt;}
.y3b{bottom:671.893333pt;}
.ya{bottom:673.013333pt;}
.ybe{bottom:674.373333pt;}
.y68{bottom:675.813333pt;}
.y103{bottom:676.213333pt;}
.y8b{bottom:681.493333pt;}
.y3a{bottom:687.573333pt;}
.ybd{bottom:698.613333pt;}
.y102{bottom:699.813333pt;}
.yae{bottom:700.693333pt;}
.y39{bottom:703.173333pt;}
.y8a{bottom:705.813333pt;}
.y67{bottom:707.493333pt;}
.ydf{bottom:714.773333pt;}
.y101{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.yad{bottom:716.293333pt;}
.y66{bottom:723.093333pt;}
.y38{bottom:726.773333pt;}
.y88{bottom:730.133333pt;}
.yde{bottom:730.453333pt;}
.y65{bottom:738.693333pt;}
.y100{bottom:739.093333pt;}
.yac{bottom:739.893333pt;}
.ybc{bottom:741.973333pt;}
.ydd{bottom:746.053333pt;}
.y8{bottom:747.733333pt;}
.y64{bottom:754.373333pt;}
.yff{bottom:754.693333pt;}
.y37{bottom:758.453333pt;}
.ydc{bottom:761.733333pt;}
.yab{bottom:769.253333pt;}
.y63{bottom:769.973333pt;}
.ybb{bottom:773.573333pt;}
.y36{bottom:774.053333pt;}
.ydb{bottom:777.333333pt;}
.yfe{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.yda{bottom:792.933333pt;}
.yaa{bottom:793.493333pt;}
.y62{bottom:793.653333pt;}
.yfd{bottom:793.973333pt;}
.y35{bottom:797.733333pt;}
.yba{bottom:802.213333pt;}
.yd9{bottom:808.613333pt;}
.yfc{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y86{bottom:821.333333pt;}
.y61{bottom:825.253333pt;}
.y34{bottom:829.573333pt;}
.yd8{bottom:832.533333pt;}
.yfb{bottom:833.253333pt;}
.ya9{bottom:836.853333pt;}
.y60{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.yfa{bottom:848.853333pt;}
.y85{bottom:853.253333pt;}
.y5f{bottom:856.533333pt;}
.ya8{bottom:868.453333pt;}
.y33{bottom:872.533333pt;}
.yd7{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y5e{bottom:880.133333pt;}
.ya4{bottom:881.733333pt;}
.y32{bottom:888.133333pt;}
.y84{bottom:896.133333pt;}
.yd5{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.ya7{bottom:906.080000pt;}
.y5d{bottom:911.840000pt;}
.yd4{bottom:921.680000pt;}
.y5c{bottom:927.440000pt;}
.ya3{bottom:930.400000pt;}
.y30{bottom:935.440000pt;}
.y5b{bottom:943.040000pt;}
.yd3{bottom:946.000000pt;}
.y2f{bottom:951.040000pt;}
.ya2{bottom:954.640000pt;}
.y5a{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.yd2{bottom:970.320000pt;}
.y59{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h1c{height:-41.208822pt;}
.h15{height:-4.791827pt;}
.hd{height:23.600000pt;}
.h1e{height:23.626667pt;}
.hc{height:23.680000pt;}
.h13{height:23.706667pt;}
.h16{height:24.081590pt;}
.h2{height:26.686562pt;}
.h18{height:29.464241pt;}
.h19{height:31.430397pt;}
.h1d{height:31.476651pt;}
.h3{height:34.804688pt;}
.h1b{height:38.529638pt;}
.h11{height:39.200000pt;}
.hf{height:39.280000pt;}
.he{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.ha{height:55.736250pt;}
.h9{height:61.076250pt;}
.h4{height:64.875937pt;}
.h14{height:66.625000pt;}
.h1a{height:69.332957pt;}
.h12{height:72.266667pt;}
.h10{height:119.120000pt;}
.h17{height:272.395719pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w19{width:29.600000pt;}
.w18{width:30.080000pt;}
.w17{width:32.080000pt;}
.w20{width:39.157116pt;}
.w1a{width:46.426667pt;}
.wa{width:46.480000pt;}
.w3{width:52.480000pt;}
.w11{width:65.280000pt;}
.w13{width:71.680000pt;}
.wb{width:72.960000pt;}
.w10{width:73.280000pt;}
.w6{width:76.960000pt;}
.w23{width:96.880000pt;}
.w4{width:99.680000pt;}
.w5{width:100.826667pt;}
.wc{width:103.066667pt;}
.wd{width:110.880000pt;}
.w7{width:113.706667pt;}
.w1e{width:118.720000pt;}
.w1c{width:120.000000pt;}
.w15{width:123.680000pt;}
.w14{width:125.066667pt;}
.w16{width:136.160000pt;}
.w12{width:136.560000pt;}
.w1d{width:139.706667pt;}
.wf{width:151.786667pt;}
.w1b{width:158.800000pt;}
.w24{width:159.120000pt;}
.we{width:164.240000pt;}
.w8{width:166.000000pt;}
.w25{width:168.266667pt;}
.w9{width:192.186667pt;}
.w1f{width:469.873422pt;}
.w22{width:533.199999pt;}
.w21{width:533.200000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x2e{left:-81.341292pt;}
.x0{left:0.000000pt;}
.x26{left:3.123828pt;}
.x5{left:6.800000pt;}
.x2d{left:27.802385pt;}
.x1{left:60.480000pt;}
.x1c{left:84.639988pt;}
.x30{left:98.879988pt;}
.x1e{left:103.840000pt;}
.x27{left:129.966667pt;}
.x8{left:138.720000pt;}
.x25{left:143.019220pt;}
.x1f{left:150.906667pt;}
.x28{left:153.179528pt;}
.xd{left:164.826667pt;}
.x12{left:167.466667pt;}
.x2{left:171.306655pt;}
.x2f{left:184.186667pt;}
.x1b{left:216.666655pt;}
.x2c{left:246.176726pt;}
.x9{left:253.066667pt;}
.x4{left:269.786667pt;}
.xe{left:276.346667pt;}
.x16{left:281.946667pt;}
.x13{left:304.746667pt;}
.x20{left:310.346667pt;}
.x24{left:311.786655pt;}
.x6{left:322.986667pt;}
.x14{left:377.066667pt;}
.x29{left:378.925792pt;}
.x17{left:418.826667pt;}
.xa{left:419.786667pt;}
.x7{left:423.386667pt;}
.x21{left:431.066667pt;}
.xf{left:441.226667pt;}
.x18{left:451.653333pt;}
.x2b{left:455.178493pt;}
.x2a{left:460.027873pt;}
.x19{left:482.453333pt;}
.x15{left:502.853333pt;}
.x22{left:571.493333pt;}
.x10{left:593.653333pt;}
.xb{left:612.693333pt;}
.x1d{left:633.013322pt;}
.xc{left:659.893333pt;}
.x23{left:666.053322pt;}
.x11{left:667.573333pt;}
.x1a{left:685.013322pt;}
.x3{left:711.413322pt;}
}




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