
    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_90b1228b5e1a11cc1068f2ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.059000;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_d50ce3caf088c70d8df899e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_e0a381dd2ef34b4ad05bd095.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_a2ed1e193d348ed0ccc47131.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139000;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_d5245e21af564fc51bcc6bb2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.069000;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_a87d560055142648f0427829.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.067000;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_a70a1bbf595fdfce1f49995c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137000;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_85e39b60f0ed1fb969217276.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.069000;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_ccbb8bf9935a7c68af22a6ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.852000;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_d66430f635ce1fde00375ab6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.067000;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_b3066fc72a4701cb90de2475.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.060000;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_b42883d8dfe0506955284bf0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.069000;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_b11eff127fc7e04a72909a5f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.067000;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_f90a24697c0f79e825f85d6b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061000;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_a68141926f6509f065c61d6b.woff2')format("woff");}.fff{font-family:fff;line-height:1.069000;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_85cf7963c43e87630816efd6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.071000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000126px;}
.ls2{letter-spacing:0.000224px;}
.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;}
}
.ws0{word-spacing:-29.983650px;}
.ws7{word-spacing:-27.000000px;}
.ws8{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.492500px;}
.ws1{word-spacing:-16.487550px;}
.ws9{word-spacing:-15.098331px;}
.ws4{word-spacing:-15.093900px;}
.ws6{word-spacing:-14.996250px;}
.ws3{word-spacing:-14.991795px;}
.ws2{word-spacing:0.000000px;}
.fca{color:rgb(10,47,34);}
.fc8{color:rgb(11,79,60);}
.fc9{color:rgb(8,170,122);}
.fc4{color:rgb(23,47,40);}
.fc3{color:rgb(58,169,116);}
.fc7{color:rgb(25,175,115);}
.fc2{color:rgb(28,72,58);}
.fc5{color:rgb(19,16,14);}
.fc1{color:rgb(69,183,116);}
.fcb{color:rgb(0,0,0);}
.fc6{color:rgb(254,254,254);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:53.983980px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:59.967180px;}
.fsc{font-size:59.985000px;}
.fs6{font-size:60.375600px;}
.fse{font-size:60.393324px;}
.fsd{font-size:60.393600px;}
.fs4{font-size:65.950200px;}
.fsb{font-size:65.970000px;}
.fs2{font-size:71.978400px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:107.968200px;}
.fs8{font-size:108.000000px;}
.fs0{font-size:119.934600px;}
.fs7{font-size:119.970000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yfb{bottom:15.745200px;}
.y25{bottom:15.745350px;}
.yfc{bottom:15.745500px;}
.y29{bottom:15.745800px;}
.y77{bottom:15.748500px;}
.y73{bottom:15.750000px;}
.y22{bottom:17.994450px;}
.y70{bottom:18.000000px;}
.ybb{bottom:19.125000px;}
.yf7{bottom:20.244000px;}
.y6d{bottom:20.250000px;}
.yf8{bottom:28.117500px;}
.y23{bottom:28.924800px;}
.y71{bottom:29.793150px;}
.ybd{bottom:29.793313px;}
.y126{bottom:30.049800px;}
.yf9{bottom:31.384050px;}
.y1f{bottom:31.491000px;}
.yfa{bottom:35.989350px;}
.y24{bottom:35.989500px;}
.yfe{bottom:35.989650px;}
.y28{bottom:35.989950px;}
.y76{bottom:35.998500px;}
.y72{bottom:36.000000px;}
.y21{bottom:38.238000px;}
.y6f{bottom:38.250000px;}
.yba{bottom:40.500000px;}
.yfd{bottom:56.233200px;}
.y27{bottom:56.233500px;}
.y75{bottom:56.248500px;}
.ybf{bottom:56.250000px;}
.y66{bottom:58.828200px;}
.yb8{bottom:66.403186px;}
.y6b{bottom:66.403650px;}
.y1d{bottom:66.498450px;}
.yb3{bottom:76.827981px;}
.y65{bottom:76.828200px;}
.y18{bottom:76.920000px;}
.y51{bottom:77.164500px;}
.y124{bottom:77.256900px;}
.y5{bottom:78.841200px;}
.y8a{bottom:80.028000px;}
.yb2{bottom:94.827981px;}
.y64{bottom:94.828200px;}
.y17{bottom:94.914750px;}
.y3c{bottom:101.952900px;}
.yb7{bottom:104.728157px;}
.y6a{bottom:104.728650px;}
.y89{bottom:104.778000px;}
.y1c{bottom:104.812350px;}
.yb1{bottom:112.827981px;}
.y63{bottom:112.828200px;}
.y16{bottom:112.909500px;}
.y50{bottom:118.789500px;}
.ye7{bottom:118.869600px;}
.ya1{bottom:120.373172px;}
.y4{bottom:120.453300px;}
.y3b{bottom:126.695250px;}
.y88{bottom:129.528000px;}
.yb0{bottom:130.827981px;}
.y62{bottom:130.828200px;}
.y15{bottom:130.904250px;}
.y114{bottom:133.244250px;}
.yb6{bottom:141.402454px;}
.y69{bottom:141.403050px;}
.y1b{bottom:141.475650px;}
.y12b{bottom:151.196700px;}
.y3a{bottom:151.437600px;}
.y87{bottom:154.278000px;}
.ybe{bottom:157.674700px;}
.y113{bottom:157.986600px;}
.y4f{bottom:160.414500px;}
.ye6{bottom:160.482300px;}
.yd3{bottom:160.855286px;}
.ya0{bottom:161.998172px;}
.y3{bottom:162.065400px;}
.y74{bottom:167.794500px;}
.y26{bottom:168.009000px;}
.y12a{bottom:175.939650px;}
.y39{bottom:176.179950px;}
.yb5{bottom:178.295423px;}
.y68{bottom:178.296000px;}
.y1a{bottom:178.357500px;}
.y86{bottom:179.028000px;}
.y1e{bottom:181.288500px;}
.yb9{bottom:181.293372px;}
.y112{bottom:182.728950px;}
.yd2{bottom:185.605286px;}
.y129{bottom:200.682600px;}
.y38{bottom:200.922300px;}
.y4e{bottom:202.039500px;}
.ye5{bottom:202.095000px;}
.yf6{bottom:203.128500px;}
.y6c{bottom:203.577000px;}
.y9f{bottom:203.623172px;}
.y2{bottom:203.677500px;}
.y85{bottom:203.778000px;}
.y125{bottom:203.782500px;}
.y111{bottom:207.471300px;}
.yd1{bottom:210.355286px;}
.y128{bottom:225.425550px;}
.y37{bottom:225.664650px;}
.y84{bottom:228.528000px;}
.y110{bottom:232.213650px;}
.yd0{bottom:235.105286px;}
.y127{bottom:250.168500px;}
.y36{bottom:250.407000px;}
.y10f{bottom:256.956000px;}
.ycf{bottom:259.855286px;}
.y83{bottom:270.094500px;}
.y35{bottom:294.270000px;}
.yce{bottom:305.249035px;}
.y10e{bottom:307.818000px;}
.y14{bottom:308.406750px;}
.y9b{bottom:320.683500px;}
.y60{bottom:324.957000px;}
.yf5{bottom:324.977850px;}
.y13{bottom:339.897300px;}
.y9a{bottom:345.433500px;}
.ybc{bottom:356.090334px;}
.y6e{bottom:356.091000px;}
.y20{bottom:356.250000px;}
.y5f{bottom:356.457000px;}
.yaf{bottom:356.457300px;}
.yf4{bottom:356.468400px;}
.y49{bottom:357.248850px;}
.y99{bottom:370.183500px;}
.y119{bottom:370.318200px;}
.y12{bottom:371.387850px;}
.y123{bottom:376.979400px;}
.ye4{bottom:378.422615px;}
.ye1{bottom:381.991614px;}
.y48{bottom:381.991800px;}
.y133{bottom:381.994950px;}
.y4d{bottom:387.135300px;}
.y5e{bottom:387.957000px;}
.yae{bottom:387.957300px;}
.yf3{bottom:387.958950px;}
.y9e{bottom:389.822100px;}
.y98{bottom:394.933500px;}
.y118{bottom:395.061150px;}
.y135{bottom:395.932650px;}
.y122{bottom:397.361250px;}
.ye3{bottom:398.810459px;}
.y11{bottom:402.878400px;}
.y47{bottom:406.734750px;}
.y132{bottom:406.737300px;}
.ye0{bottom:406.741614px;}
.y4c{bottom:407.517150px;}
.y9d{bottom:410.209800px;}
.y134{bottom:416.314500px;}
.y121{bottom:417.742500px;}
.ye2{bottom:419.198303px;}
.yf2{bottom:419.449500px;}
.y5d{bottom:419.457000px;}
.yad{bottom:419.457300px;}
.y97{bottom:419.683500px;}
.y117{bottom:419.804100px;}
.y4b{bottom:427.899000px;}
.y9c{bottom:430.597500px;}
.y46{bottom:431.477700px;}
.y131{bottom:431.479650px;}
.ydf{bottom:431.491614px;}
.y10{bottom:434.368950px;}
.y96{bottom:444.433500px;}
.y116{bottom:444.547050px;}
.yf1{bottom:450.940050px;}
.y5c{bottom:450.957000px;}
.yac{bottom:450.957300px;}
.y10d{bottom:454.416000px;}
.y45{bottom:456.220650px;}
.y130{bottom:456.222000px;}
.yde{bottom:456.241614px;}
.yf{bottom:465.859500px;}
.ycd{bottom:468.075735px;}
.y115{bottom:469.290000px;}
.y10c{bottom:479.158950px;}
.y12f{bottom:480.964350px;}
.yf0{bottom:482.430600px;}
.y5b{bottom:482.457000px;}
.yab{bottom:482.457300px;}
.ycc{bottom:492.825735px;}
.y95{bottom:493.933500px;}
.ye{bottom:497.350050px;}
.y10b{bottom:503.901900px;}
.y44{bottom:505.705950px;}
.ydd{bottom:505.741614px;}
.yef{bottom:513.921150px;}
.y5a{bottom:513.957000px;}
.yaa{bottom:513.957300px;}
.ycb{bottom:517.575735px;}
.y94{bottom:518.683500px;}
.y120{bottom:518.772150px;}
.y34{bottom:521.503950px;}
.y82{bottom:524.778000px;}
.y10a{bottom:528.644850px;}
.yd{bottom:528.840600px;}
.y43{bottom:530.448900px;}
.y12e{bottom:530.449650px;}
.ydc{bottom:530.491614px;}
.yca{bottom:542.325735px;}
.y93{bottom:543.433500px;}
.y11f{bottom:543.515100px;}
.yee{bottom:545.411700px;}
.y59{bottom:545.457000px;}
.ya9{bottom:545.457300px;}
.y33{bottom:546.246900px;}
.y81{bottom:549.528000px;}
.y109{bottom:553.387800px;}
.y42{bottom:555.191850px;}
.y12d{bottom:555.192000px;}
.ydb{bottom:555.241614px;}
.yc{bottom:560.331150px;}
.yc9{bottom:567.075735px;}
.y92{bottom:568.183500px;}
.y11e{bottom:568.258050px;}
.y32{bottom:570.989850px;}
.y80{bottom:574.278000px;}
.yed{bottom:576.902250px;}
.y58{bottom:576.957000px;}
.ya8{bottom:576.957300px;}
.y108{bottom:578.130750px;}
.y4a{bottom:579.932850px;}
.y12c{bottom:579.934350px;}
.yb{bottom:591.821700px;}
.yc8{bottom:591.825735px;}
.y31{bottom:595.732800px;}
.y7f{bottom:599.028000px;}
.y107{bottom:602.873700px;}
.yda{bottom:604.741614px;}
.yec{bottom:608.392800px;}
.y57{bottom:608.457000px;}
.ya7{bottom:608.457300px;}
.yc7{bottom:616.575735px;}
.y91{bottom:617.683500px;}
.y11d{bottom:617.743350px;}
.y30{bottom:620.475750px;}
.ya{bottom:623.312250px;}
.y7e{bottom:623.778000px;}
.y106{bottom:627.616650px;}
.y41{bottom:629.419650px;}
.yd9{bottom:629.491614px;}
.yeb{bottom:639.883350px;}
.y56{bottom:639.957000px;}
.ya6{bottom:639.957300px;}
.yc6{bottom:641.325735px;}
.y90{bottom:642.433500px;}
.y11c{bottom:642.486300px;}
.y2f{bottom:645.218700px;}
.y7d{bottom:648.528000px;}
.y105{bottom:652.359600px;}
.y40{bottom:654.162600px;}
.yd8{bottom:654.241614px;}
.y9{bottom:654.802800px;}
.yc5{bottom:666.075735px;}
.y8f{bottom:667.183500px;}
.y11b{bottom:667.229250px;}
.y2e{bottom:669.961650px;}
.yea{bottom:671.373900px;}
.y55{bottom:671.457000px;}
.ya5{bottom:671.457300px;}
.y7c{bottom:673.278000px;}
.y104{bottom:677.102550px;}
.y3f{bottom:678.905550px;}
.yd7{bottom:678.991614px;}
.y8{bottom:686.293350px;}
.yc4{bottom:690.825735px;}
.y8e{bottom:691.933500px;}
.y11a{bottom:691.972200px;}
.y2d{bottom:694.704600px;}
.y7b{bottom:698.028000px;}
.y103{bottom:701.845500px;}
.ye9{bottom:702.864450px;}
.y54{bottom:702.957000px;}
.ya4{bottom:702.957300px;}
.y3e{bottom:703.648500px;}
.yd6{bottom:703.741614px;}
.yc3{bottom:715.575735px;}
.y8d{bottom:716.683500px;}
.y7{bottom:717.784500px;}
.y2c{bottom:719.447550px;}
.y7a{bottom:722.778000px;}
.ye8{bottom:734.355000px;}
.y53{bottom:734.457000px;}
.ya3{bottom:734.457300px;}
.y102{bottom:743.348850px;}
.y2b{bottom:744.190500px;}
.y19{bottom:744.651000px;}
.yb4{bottom:744.756730px;}
.y67{bottom:744.757500px;}
.y3d{bottom:747.330600px;}
.yd5{bottom:747.436526px;}
.y79{bottom:747.528000px;}
.yc2{bottom:758.789095px;}
.y8c{bottom:759.645000px;}
.y101{bottom:774.839400px;}
.y61{bottom:783.034500px;}
.y2a{bottom:784.444500px;}
.yd4{bottom:784.561526px;}
.y6{bottom:790.087500px;}
.ya2{bottom:790.206719px;}
.y52{bottom:790.207500px;}
.y78{bottom:794.079000px;}
.yc1{bottom:795.914095px;}
.y8b{bottom:796.770000px;}
.y100{bottom:806.329950px;}
.yc0{bottom:833.039095px;}
.yff{bottom:837.820500px;}
.h5{height:43.888976px;}
.h23{height:43.942960px;}
.h6{height:44.698735px;}
.h14{height:44.712000px;}
.h25{height:46.110900px;}
.h28{height:46.111500px;}
.h16{height:46.125000px;}
.h13{height:48.114000px;}
.h9{height:48.753317px;}
.hb{height:49.233055px;}
.h17{height:49.247685px;}
.hf{height:49.568368px;}
.h20{height:49.582919px;}
.h1c{height:49.583146px;}
.h7{height:53.617513px;}
.h24{height:53.683463px;}
.h26{height:58.482450px;}
.h19{height:58.500000px;}
.h4{height:58.518439px;}
.h22{height:58.590418px;}
.h15{height:58.779270px;}
.hc{height:59.607450px;}
.ha{height:62.981250px;}
.h18{height:63.000000px;}
.h12{height:64.152000px;}
.h1f{height:65.250000px;}
.h8{height:68.605050px;}
.hd{height:78.726600px;}
.h1a{height:78.750000px;}
.he{height:87.778147px;}
.h27{height:87.886115px;}
.h3{height:89.397670px;}
.h11{height:89.424000px;}
.h1b{height:96.228000px;}
.h2{height:97.506830px;}
.h21{height:97.626764px;}
.h10{height:106.893270px;}
.h1{height:893.100000px;}
.h1e{height:893.249973px;}
.h1d{height:893.249981px;}
.h0{height:893.250000px;}
.wf{width:119.214300px;}
.w7{width:119.250000px;}
.wd{width:130.461300px;}
.w4{width:132.710100px;}
.w8{width:132.750000px;}
.w3{width:139.458450px;}
.wb{width:140.625000px;}
.we{width:169.824000px;}
.w9{width:169.875000px;}
.w5{width:177.696000px;}
.w6{width:190.068000px;}
.wa{width:190.125000px;}
.wc{width:208.124956px;}
.w2{width:1262.850000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2b{left:5.941500px;}
.x3d{left:6.943359px;}
.x14{left:7.995000px;}
.x19{left:9.049500px;}
.x2e{left:12.516420px;}
.x5c{left:13.548000px;}
.x16{left:15.972000px;}
.x3b{left:20.337891px;}
.x1d{left:23.178330px;}
.x1c{left:27.642000px;}
.x3a{left:31.148438px;}
.x17{left:32.895000px;}
.x1a{left:36.533550px;}
.x2d{left:42.292950px;}
.x3f{left:44.094073px;}
.x50{left:45.443700px;}
.x1e{left:49.239030px;}
.x2c{left:50.730450px;}
.x5b{left:52.102800px;}
.x2f{left:53.749200px;}
.x30{left:56.154450px;}
.x52{left:58.957650px;}
.x20{left:60.673800px;}
.x4f{left:63.930000px;}
.x3e{left:65.671875px;}
.x7{left:67.233930px;}
.xb{left:69.008820px;}
.x3{left:70.607850px;}
.xd{left:72.663840px;}
.x4a{left:74.433030px;}
.xa{left:76.512330px;}
.x49{left:78.071115px;}
.x28{left:79.851660px;}
.x26{left:81.240330px;}
.x36{left:82.294975px;}
.x44{left:83.746950px;}
.x48{left:84.994545px;}
.x4{left:86.599200px;}
.x58{left:88.157276px;}
.x34{left:89.273491px;}
.x8{left:90.289380px;}
.xc{left:91.976340px;}
.x46{left:93.535050px;}
.x35{left:97.816459px;}
.x5{left:101.078880px;}
.x6{left:103.697430px;}
.x27{left:106.254060px;}
.x25{left:108.609480px;}
.x9{left:110.954880px;}
.x45{left:114.305955px;}
.x57{left:116.274000px;}
.xe{left:120.830790px;}
.xf{left:133.905405px;}
.x56{left:137.978850px;}
.x47{left:141.087450px;}
.x2{left:142.600800px;}
.x43{left:151.896000px;}
.x24{left:154.596000px;}
.x33{left:165.318838px;}
.x4b{left:171.277380px;}
.x29{left:175.248165px;}
.x59{left:193.243466px;}
.x2a{left:481.993500px;}
.x37{left:505.805448px;}
.x4c{left:509.785500px;}
.x5a{left:520.803000px;}
.x10{left:545.089500px;}
.x3c{left:551.700572px;}
.x1b{left:569.038500px;}
.x38{left:574.681947px;}
.x12{left:578.353500px;}
.x11{left:580.503000px;}
.x4d{left:584.317500px;}
.x15{left:629.185500px;}
.x32{left:870.619395px;}
.x1f{left:879.531000px;}
.x1{left:881.839500px;}
.x51{left:884.017500px;}
.x4e{left:911.100000px;}
.x18{left:915.216000px;}
.x31{left:1052.749500px;}
.x5d{left:1058.505000px;}
.x40{left:1061.634343px;}
.x21{left:1068.528000px;}
.x53{left:1069.618500px;}
.x22{left:1076.366085px;}
.x42{left:1082.482329px;}
.x55{left:1084.250460px;}
.x54{left:1089.753000px;}
.x41{left:1091.986038px;}
.x23{left:1093.120935px;}
.x39{left:1096.937842px;}
.x13{left:1099.270500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000112pt;}
.ls2{letter-spacing:0.000199pt;}
.ws0{word-spacing:-26.652133pt;}
.ws7{word-spacing:-24.000000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.660000pt;}
.ws1{word-spacing:-14.655600pt;}
.ws9{word-spacing:-13.420739pt;}
.ws4{word-spacing:-13.416800pt;}
.ws6{word-spacing:-13.330000pt;}
.ws3{word-spacing:-13.326040pt;}
.ws2{word-spacing:0.000000pt;}
.fs3{font-size:47.985760pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.304160pt;}
.fsc{font-size:53.320000pt;}
.fs6{font-size:53.667200pt;}
.fse{font-size:53.682954pt;}
.fsd{font-size:53.683200pt;}
.fs4{font-size:58.622400pt;}
.fsb{font-size:58.640000pt;}
.fs2{font-size:63.980800pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:95.971733pt;}
.fs8{font-size:96.000000pt;}
.fs0{font-size:106.608533pt;}
.fs7{font-size:106.640000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yfb{bottom:13.995733pt;}
.y25{bottom:13.995867pt;}
.yfc{bottom:13.996000pt;}
.y29{bottom:13.996267pt;}
.y77{bottom:13.998667pt;}
.y73{bottom:14.000000pt;}
.y22{bottom:15.995067pt;}
.y70{bottom:16.000000pt;}
.ybb{bottom:17.000000pt;}
.yf7{bottom:17.994667pt;}
.y6d{bottom:18.000000pt;}
.yf8{bottom:24.993333pt;}
.y23{bottom:25.710933pt;}
.y71{bottom:26.482800pt;}
.ybd{bottom:26.482945pt;}
.y126{bottom:26.710933pt;}
.yf9{bottom:27.896933pt;}
.y1f{bottom:27.992000pt;}
.yfa{bottom:31.990533pt;}
.y24{bottom:31.990667pt;}
.yfe{bottom:31.990800pt;}
.y28{bottom:31.991067pt;}
.y76{bottom:31.998667pt;}
.y72{bottom:32.000000pt;}
.y21{bottom:33.989333pt;}
.y6f{bottom:34.000000pt;}
.yba{bottom:36.000000pt;}
.yfd{bottom:49.985067pt;}
.y27{bottom:49.985333pt;}
.y75{bottom:49.998667pt;}
.ybf{bottom:50.000000pt;}
.y66{bottom:52.291733pt;}
.yb8{bottom:59.025055pt;}
.y6b{bottom:59.025467pt;}
.y1d{bottom:59.109733pt;}
.yb3{bottom:68.291539pt;}
.y65{bottom:68.291733pt;}
.y18{bottom:68.373333pt;}
.y51{bottom:68.590667pt;}
.y124{bottom:68.672800pt;}
.y5{bottom:70.081067pt;}
.y8a{bottom:71.136000pt;}
.yb2{bottom:84.291539pt;}
.y64{bottom:84.291733pt;}
.y17{bottom:84.368667pt;}
.y3c{bottom:90.624800pt;}
.yb7{bottom:93.091695pt;}
.y6a{bottom:93.092133pt;}
.y89{bottom:93.136000pt;}
.y1c{bottom:93.166533pt;}
.yb1{bottom:100.291539pt;}
.y63{bottom:100.291733pt;}
.y16{bottom:100.364000pt;}
.y50{bottom:105.590667pt;}
.ye7{bottom:105.661867pt;}
.ya1{bottom:106.998375pt;}
.y4{bottom:107.069600pt;}
.y3b{bottom:112.618000pt;}
.y88{bottom:115.136000pt;}
.yb0{bottom:116.291539pt;}
.y62{bottom:116.291733pt;}
.y15{bottom:116.359333pt;}
.y114{bottom:118.439333pt;}
.yb6{bottom:125.691070pt;}
.y69{bottom:125.691600pt;}
.y1b{bottom:125.756133pt;}
.y12b{bottom:134.397067pt;}
.y3a{bottom:134.611200pt;}
.y87{bottom:137.136000pt;}
.ybe{bottom:140.155289pt;}
.y113{bottom:140.432533pt;}
.y4f{bottom:142.590667pt;}
.ye6{bottom:142.650933pt;}
.yd3{bottom:142.982476pt;}
.ya0{bottom:143.998375pt;}
.y3{bottom:144.058133pt;}
.y74{bottom:149.150667pt;}
.y26{bottom:149.341333pt;}
.y12a{bottom:156.390800pt;}
.y39{bottom:156.604400pt;}
.yb5{bottom:158.484820pt;}
.y68{bottom:158.485333pt;}
.y1a{bottom:158.540000pt;}
.y86{bottom:159.136000pt;}
.y1e{bottom:161.145333pt;}
.yb9{bottom:161.149664pt;}
.y112{bottom:162.425733pt;}
.yd2{bottom:164.982476pt;}
.y129{bottom:178.384533pt;}
.y38{bottom:178.597600pt;}
.y4e{bottom:179.590667pt;}
.ye5{bottom:179.640000pt;}
.yf6{bottom:180.558667pt;}
.y6c{bottom:180.957333pt;}
.y9f{bottom:180.998375pt;}
.y2{bottom:181.046667pt;}
.y85{bottom:181.136000pt;}
.y125{bottom:181.140000pt;}
.y111{bottom:184.418933pt;}
.yd1{bottom:186.982476pt;}
.y128{bottom:200.378267pt;}
.y37{bottom:200.590800pt;}
.y84{bottom:203.136000pt;}
.y110{bottom:206.412133pt;}
.yd0{bottom:208.982476pt;}
.y127{bottom:222.372000pt;}
.y36{bottom:222.584000pt;}
.y10f{bottom:228.405333pt;}
.ycf{bottom:230.982476pt;}
.y83{bottom:240.084000pt;}
.y35{bottom:261.573333pt;}
.yce{bottom:271.332476pt;}
.y10e{bottom:273.616000pt;}
.y14{bottom:274.139333pt;}
.y9b{bottom:285.052000pt;}
.y60{bottom:288.850667pt;}
.yf5{bottom:288.869200pt;}
.y13{bottom:302.130933pt;}
.y9a{bottom:307.052000pt;}
.ybc{bottom:316.524741pt;}
.y6e{bottom:316.525333pt;}
.y20{bottom:316.666667pt;}
.y5f{bottom:316.850667pt;}
.yaf{bottom:316.850933pt;}
.yf4{bottom:316.860800pt;}
.y49{bottom:317.554533pt;}
.y99{bottom:329.052000pt;}
.y119{bottom:329.171733pt;}
.y12{bottom:330.122533pt;}
.y123{bottom:335.092800pt;}
.ye4{bottom:336.375658pt;}
.ye1{bottom:339.548101pt;}
.y48{bottom:339.548267pt;}
.y133{bottom:339.551067pt;}
.y4d{bottom:344.120267pt;}
.y5e{bottom:344.850667pt;}
.yae{bottom:344.850933pt;}
.yf3{bottom:344.852400pt;}
.y9e{bottom:346.508533pt;}
.y98{bottom:351.052000pt;}
.y118{bottom:351.165467pt;}
.y135{bottom:351.940133pt;}
.y122{bottom:353.210000pt;}
.ye3{bottom:354.498186pt;}
.y11{bottom:358.114133pt;}
.y47{bottom:361.542000pt;}
.y132{bottom:361.544267pt;}
.ye0{bottom:361.548101pt;}
.y4c{bottom:362.237467pt;}
.y9d{bottom:364.630933pt;}
.y134{bottom:370.057333pt;}
.y121{bottom:371.326667pt;}
.ye2{bottom:372.620714pt;}
.yf2{bottom:372.844000pt;}
.y5d{bottom:372.850667pt;}
.yad{bottom:372.850933pt;}
.y97{bottom:373.052000pt;}
.y117{bottom:373.159200pt;}
.y4b{bottom:380.354667pt;}
.y9c{bottom:382.753333pt;}
.y46{bottom:383.535733pt;}
.y131{bottom:383.537467pt;}
.ydf{bottom:383.548101pt;}
.y10{bottom:386.105733pt;}
.y96{bottom:395.052000pt;}
.y116{bottom:395.152933pt;}
.yf1{bottom:400.835600pt;}
.y5c{bottom:400.850667pt;}
.yac{bottom:400.850933pt;}
.y10d{bottom:403.925333pt;}
.y45{bottom:405.529467pt;}
.y130{bottom:405.530667pt;}
.yde{bottom:405.548101pt;}
.yf{bottom:414.097333pt;}
.ycd{bottom:416.067320pt;}
.y115{bottom:417.146667pt;}
.y10c{bottom:425.919067pt;}
.y12f{bottom:427.523867pt;}
.yf0{bottom:428.827200pt;}
.y5b{bottom:428.850667pt;}
.yab{bottom:428.850933pt;}
.ycc{bottom:438.067320pt;}
.y95{bottom:439.052000pt;}
.ye{bottom:442.088933pt;}
.y10b{bottom:447.912800pt;}
.y44{bottom:449.516400pt;}
.ydd{bottom:449.548101pt;}
.yef{bottom:456.818800pt;}
.y5a{bottom:456.850667pt;}
.yaa{bottom:456.850933pt;}
.ycb{bottom:460.067320pt;}
.y94{bottom:461.052000pt;}
.y120{bottom:461.130800pt;}
.y34{bottom:463.559067pt;}
.y82{bottom:466.469333pt;}
.y10a{bottom:469.906533pt;}
.yd{bottom:470.080533pt;}
.y43{bottom:471.510133pt;}
.y12e{bottom:471.510800pt;}
.ydc{bottom:471.548101pt;}
.yca{bottom:482.067320pt;}
.y93{bottom:483.052000pt;}
.y11f{bottom:483.124533pt;}
.yee{bottom:484.810400pt;}
.y59{bottom:484.850667pt;}
.ya9{bottom:484.850933pt;}
.y33{bottom:485.552800pt;}
.y81{bottom:488.469333pt;}
.y109{bottom:491.900267pt;}
.y42{bottom:493.503867pt;}
.y12d{bottom:493.504000pt;}
.ydb{bottom:493.548101pt;}
.yc{bottom:498.072133pt;}
.yc9{bottom:504.067320pt;}
.y92{bottom:505.052000pt;}
.y11e{bottom:505.118267pt;}
.y32{bottom:507.546533pt;}
.y80{bottom:510.469333pt;}
.yed{bottom:512.802000pt;}
.y58{bottom:512.850667pt;}
.ya8{bottom:512.850933pt;}
.y108{bottom:513.894000pt;}
.y4a{bottom:515.495867pt;}
.y12c{bottom:515.497200pt;}
.yb{bottom:526.063733pt;}
.yc8{bottom:526.067320pt;}
.y31{bottom:529.540267pt;}
.y7f{bottom:532.469333pt;}
.y107{bottom:535.887733pt;}
.yda{bottom:537.548101pt;}
.yec{bottom:540.793600pt;}
.y57{bottom:540.850667pt;}
.ya7{bottom:540.850933pt;}
.yc7{bottom:548.067320pt;}
.y91{bottom:549.052000pt;}
.y11d{bottom:549.105200pt;}
.y30{bottom:551.534000pt;}
.ya{bottom:554.055333pt;}
.y7e{bottom:554.469333pt;}
.y106{bottom:557.881467pt;}
.y41{bottom:559.484133pt;}
.yd9{bottom:559.548101pt;}
.yeb{bottom:568.785200pt;}
.y56{bottom:568.850667pt;}
.ya6{bottom:568.850933pt;}
.yc6{bottom:570.067320pt;}
.y90{bottom:571.052000pt;}
.y11c{bottom:571.098933pt;}
.y2f{bottom:573.527733pt;}
.y7d{bottom:576.469333pt;}
.y105{bottom:579.875200pt;}
.y40{bottom:581.477867pt;}
.yd8{bottom:581.548101pt;}
.y9{bottom:582.046933pt;}
.yc5{bottom:592.067320pt;}
.y8f{bottom:593.052000pt;}
.y11b{bottom:593.092667pt;}
.y2e{bottom:595.521467pt;}
.yea{bottom:596.776800pt;}
.y55{bottom:596.850667pt;}
.ya5{bottom:596.850933pt;}
.y7c{bottom:598.469333pt;}
.y104{bottom:601.868933pt;}
.y3f{bottom:603.471600pt;}
.yd7{bottom:603.548101pt;}
.y8{bottom:610.038533pt;}
.yc4{bottom:614.067320pt;}
.y8e{bottom:615.052000pt;}
.y11a{bottom:615.086400pt;}
.y2d{bottom:617.515200pt;}
.y7b{bottom:620.469333pt;}
.y103{bottom:623.862667pt;}
.ye9{bottom:624.768400pt;}
.y54{bottom:624.850667pt;}
.ya4{bottom:624.850933pt;}
.y3e{bottom:625.465333pt;}
.yd6{bottom:625.548101pt;}
.yc3{bottom:636.067320pt;}
.y8d{bottom:637.052000pt;}
.y7{bottom:638.030667pt;}
.y2c{bottom:639.508933pt;}
.y7a{bottom:642.469333pt;}
.ye8{bottom:652.760000pt;}
.y53{bottom:652.850667pt;}
.ya3{bottom:652.850933pt;}
.y102{bottom:660.754533pt;}
.y2b{bottom:661.502667pt;}
.y19{bottom:661.912000pt;}
.yb4{bottom:662.005982pt;}
.y67{bottom:662.006667pt;}
.y3d{bottom:664.293867pt;}
.yd5{bottom:664.388023pt;}
.y79{bottom:664.469333pt;}
.yc2{bottom:674.479195pt;}
.y8c{bottom:675.240000pt;}
.y101{bottom:688.746133pt;}
.y61{bottom:696.030667pt;}
.y2a{bottom:697.284000pt;}
.yd4{bottom:697.388023pt;}
.y6{bottom:702.300000pt;}
.ya2{bottom:702.405973pt;}
.y52{bottom:702.406667pt;}
.y78{bottom:705.848000pt;}
.yc1{bottom:707.479195pt;}
.y8b{bottom:708.240000pt;}
.y100{bottom:716.737733pt;}
.yc0{bottom:740.479195pt;}
.yff{bottom:744.729333pt;}
.h5{height:39.012423pt;}
.h23{height:39.060409pt;}
.h6{height:39.732209pt;}
.h14{height:39.744000pt;}
.h25{height:40.987467pt;}
.h28{height:40.988000pt;}
.h16{height:41.000000pt;}
.h13{height:42.768000pt;}
.h9{height:43.336282pt;}
.hb{height:43.762715pt;}
.h17{height:43.775720pt;}
.hf{height:44.060771pt;}
.h20{height:44.073706pt;}
.h1c{height:44.073907pt;}
.h7{height:47.660011pt;}
.h24{height:47.718634pt;}
.h26{height:51.984400pt;}
.h19{height:52.000000pt;}
.h4{height:52.016390pt;}
.h22{height:52.080371pt;}
.h15{height:52.248240pt;}
.hc{height:52.984400pt;}
.ha{height:55.983333pt;}
.h18{height:56.000000pt;}
.h12{height:57.024000pt;}
.h1f{height:58.000000pt;}
.h8{height:60.982267pt;}
.hd{height:69.979200pt;}
.h1a{height:70.000000pt;}
.he{height:78.025019pt;}
.h27{height:78.120991pt;}
.h3{height:79.464595pt;}
.h11{height:79.488000pt;}
.h1b{height:85.536000pt;}
.h2{height:86.672738pt;}
.h21{height:86.779346pt;}
.h10{height:95.016240pt;}
.h1{height:793.866667pt;}
.h1e{height:793.999976pt;}
.h1d{height:793.999983pt;}
.h0{height:794.000000pt;}
.wf{width:105.968267pt;}
.w7{width:106.000000pt;}
.wd{width:115.965600pt;}
.w4{width:117.964533pt;}
.w8{width:118.000000pt;}
.w3{width:123.963067pt;}
.wb{width:125.000000pt;}
.we{width:150.954667pt;}
.w9{width:151.000000pt;}
.w5{width:157.952000pt;}
.w6{width:168.949333pt;}
.wa{width:169.000000pt;}
.wc{width:184.999961pt;}
.w2{width:1122.533333pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2b{left:5.281333pt;}
.x3d{left:6.171875pt;}
.x14{left:7.106667pt;}
.x19{left:8.044000pt;}
.x2e{left:11.125707pt;}
.x5c{left:12.042667pt;}
.x16{left:14.197333pt;}
.x3b{left:18.078125pt;}
.x1d{left:20.602960pt;}
.x1c{left:24.570667pt;}
.x3a{left:27.687500pt;}
.x17{left:29.240000pt;}
.x1a{left:32.474267pt;}
.x2d{left:37.593733pt;}
.x3f{left:39.194732pt;}
.x50{left:40.394400pt;}
.x1e{left:43.768027pt;}
.x2c{left:45.093733pt;}
.x5b{left:46.313600pt;}
.x2f{left:47.777067pt;}
.x30{left:49.915067pt;}
.x52{left:52.406800pt;}
.x20{left:53.932267pt;}
.x4f{left:56.826667pt;}
.x3e{left:58.375000pt;}
.x7{left:59.763493pt;}
.xb{left:61.341173pt;}
.x3{left:62.762533pt;}
.xd{left:64.590080pt;}
.x4a{left:66.162693pt;}
.xa{left:68.010960pt;}
.x49{left:69.396547pt;}
.x28{left:70.979253pt;}
.x26{left:72.213627pt;}
.x36{left:73.151089pt;}
.x44{left:74.441733pt;}
.x48{left:75.550707pt;}
.x4{left:76.977067pt;}
.x58{left:78.362023pt;}
.x34{left:79.354214pt;}
.x8{left:80.257227pt;}
.xc{left:81.756747pt;}
.x46{left:83.142267pt;}
.x35{left:86.947964pt;}
.x5{left:89.847893pt;}
.x6{left:92.175493pt;}
.x27{left:94.448053pt;}
.x25{left:96.541760pt;}
.x9{left:98.626560pt;}
.x45{left:101.605293pt;}
.x57{left:103.354667pt;}
.xe{left:107.405147pt;}
.xf{left:119.027027pt;}
.x56{left:122.647867pt;}
.x47{left:125.411067pt;}
.x2{left:126.756267pt;}
.x43{left:135.018667pt;}
.x24{left:137.418667pt;}
.x33{left:146.950078pt;}
.x4b{left:152.246560pt;}
.x29{left:155.776147pt;}
.x59{left:171.771969pt;}
.x2a{left:428.438667pt;}
.x37{left:449.604843pt;}
.x4c{left:453.142667pt;}
.x5a{left:462.936000pt;}
.x10{left:484.524000pt;}
.x3c{left:490.400509pt;}
.x1b{left:505.812000pt;}
.x38{left:510.828397pt;}
.x12{left:514.092000pt;}
.x11{left:516.002667pt;}
.x4d{left:519.393333pt;}
.x15{left:559.276000pt;}
.x32{left:773.883906pt;}
.x1f{left:781.805333pt;}
.x1{left:783.857333pt;}
.x51{left:785.793333pt;}
.x4e{left:809.866667pt;}
.x18{left:813.525333pt;}
.x31{left:935.777333pt;}
.x5d{left:940.893333pt;}
.x40{left:943.674972pt;}
.x21{left:949.802667pt;}
.x53{left:950.772000pt;}
.x22{left:956.769853pt;}
.x42{left:962.206515pt;}
.x55{left:963.778187pt;}
.x54{left:968.669333pt;}
.x41{left:970.654256pt;}
.x23{left:971.663053pt;}
.x39{left:975.055859pt;}
.x13{left:977.129333pt;}
}




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