
    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_bd7e594047f79a25ddb52558.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_8141ce86e4c7a889a9bd9281.woff')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_69a17dc03a12c66e6338a095.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_a68a24a648d44fdf60552982.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_d11e6189d3f5e1959e64aad3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_46d10f54b2f5c1ea77db4b91.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_2a8fd650d8eb3de0d17e0a34.woff')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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_46bad7a1f795ae290a2580cc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.108000;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_293bd393e76edbd3f12f1951.woff')format("woff");}.ff9{font-family:ff9;line-height:1.185000;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_e41e0b9c46018aa183533c80.woff')format("woff");}.ffa{font-family:ffa;line-height:0.685000;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_1f76f34b4868ebccabe77b60.woff')format("woff");}.ffb{font-family:ffb;line-height:1.007000;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_fc45d31fd50955cbaba57af1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.007000;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_a2fdc0cb730c490fd3ca95c6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_ee6489a83a5248a74eca5fb2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_87ab2f5ef14d30d789706f8a.woff')format("woff");}.fff{font-family:fff;line-height:1.005000;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_95576a19b499d6eb32be9e4c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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:ff11;src:url('chunks/assets/font_476352a7e1d5930be72d4a6c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.005000;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:ff12;src:url('chunks/assets/font_bdd210ce718b68e83d65c4ce.woff')format("woff");}.ff12{font-family:ff12;line-height:1.006000;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:ff13;src:url('chunks/assets/font_1d1f0d506ed08dbe3abda33b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.005000;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:ff14;src:url('chunks/assets/font_a1b68f4ecd572393572d288b.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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:ff15;src:url('chunks/assets/font_e473b03753bdb2d1cad9b128.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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);}
.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);}
.v2{vertical-align:-15.960000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.760000px;}
.v1{vertical-align:21.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls5{letter-spacing:2.214000px;}
.ls3{letter-spacing:3.024000px;}
.ls4{letter-spacing:11.718000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.ws9{word-spacing:-15.714000px;}
.ws6{word-spacing:-14.820000px;}
.wsa{word-spacing:-14.352000px;}
.ws0{word-spacing:-14.040000px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.480000px;}
.ws5{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.405200px;}
.ws1b{word-spacing:-9.360000px;}
.ws4{word-spacing:0.000000px;}
.ws19{word-spacing:27.579000px;}
.ws1a{word-spacing:33.870000px;}
.ws17{word-spacing:61.125000px;}
.ws18{word-spacing:65.209200px;}
.wsc{word-spacing:89.501400px;}
.ws10{word-spacing:91.348800px;}
.ws16{word-spacing:102.653400px;}
.wse{word-spacing:103.348800px;}
.ws13{word-spacing:115.877400px;}
.ws12{word-spacing:118.205400px;}
.wsd{word-spacing:132.286200px;}
.ws14{word-spacing:149.044800px;}
.ws11{word-spacing:159.694200px;}
.wsf{word-spacing:197.950200px;}
.ws15{word-spacing:240.961800px;}
.ws3{word-spacing:341.964000px;}
.ws2{word-spacing:387.564000px;}
._e{margin-left:-13.764600px;}
._1a{margin-left:-12.349200px;}
._7{margin-left:-5.994000px;}
._14{margin-left:-4.320000px;}
._16{margin-left:-2.338800px;}
._4{margin-left:-1.140000px;}
._b{width:1.009800px;}
._28{width:2.889600px;}
._22{width:4.050000px;}
._13{width:5.346000px;}
._12{width:7.296000px;}
._9{width:8.532000px;}
._1b{width:9.580800px;}
._17{width:10.638000px;}
._c{width:11.988000px;}
._a{width:14.796000px;}
._d{width:16.476000px;}
._f{width:17.520000px;}
._15{width:18.954000px;}
._11{width:20.142000px;}
._10{width:21.492000px;}
._1{width:22.524000px;}
._5{width:24.426600px;}
._19{width:26.152800px;}
._1c{width:27.726000px;}
._6{width:29.160000px;}
._18{width:30.294000px;}
._8{width:31.860000px;}
._21{width:33.642000px;}
._23{width:34.830000px;}
._25{width:36.018000px;}
._1e{width:37.476000px;}
._20{width:39.079200px;}
._1d{width:40.138800px;}
._1f{width:43.146000px;}
._24{width:46.116000px;}
._26{width:49.302000px;}
._27{width:67.098000px;}
._2{width:72.000000px;}
._40{width:77.011800px;}
._39{width:79.685400px;}
._0{width:80.988000px;}
._44{width:92.700000px;}
._3a{width:99.643200px;}
._3d{width:112.797000px;}
._29{width:132.741600px;}
._42{width:134.093400px;}
._38{width:136.494600px;}
._37{width:139.915200px;}
._3b{width:153.270000px;}
._2a{width:160.369800px;}
._3c{width:170.478000px;}
._30{width:174.073800px;}
._45{width:175.914000px;}
._3f{width:177.526200px;}
._2b{width:200.853000px;}
._31{width:206.905800px;}
._32{width:214.557000px;}
._41{width:215.955000px;}
._3e{width:220.553400px;}
._2d{width:226.033800px;}
._2e{width:233.685000px;}
._3{width:234.720000px;}
._43{width:255.268200px;}
._34{width:261.093000px;}
._33{width:265.246200px;}
._36{width:266.812200px;}
._2c{width:280.084800px;}
._2f{width:299.644200px;}
._35{width:327.052200px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,68,148);}
.fc1{color:rgb(0,68,148);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fs8{font-size:36.000000px;}
.fs4{font-size:40.020000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fsd{font-size:55.200000px;}
.fsc{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs3{font-size:78.000000px;}
.fs9{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fse{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:16.725000px;}
.y36{bottom:45.135000px;}
.y5b{bottom:46.140000px;}
.y38{bottom:61.500000px;}
.y37{bottom:70.185000px;}
.y5d{bottom:75.570000px;}
.y121{bottom:82.575150px;}
.y120{bottom:96.825150px;}
.y11f{bottom:111.075150px;}
.y11e{bottom:125.325150px;}
.y1bb{bottom:145.125000px;}
.y29{bottom:151.905000px;}
.ybc{bottom:156.143400px;}
.y8f{bottom:156.592200px;}
.y28{bottom:169.455000px;}
.ybb{bottom:172.643400px;}
.y8e{bottom:173.092200px;}
.y27{bottom:187.005000px;}
.yba{bottom:189.143400px;}
.y8d{bottom:189.592200px;}
.y136{bottom:193.439550px;}
.y14c{bottom:193.577250px;}
.y1ba{bottom:193.785000px;}
.y26{bottom:204.555000px;}
.yb9{bottom:205.643400px;}
.y8c{bottom:206.092200px;}
.yea{bottom:208.354050px;}
.y115{bottom:208.654050px;}
.y135{bottom:209.939550px;}
.y14b{bottom:210.077250px;}
.y34{bottom:214.845000px;}
.y1b9{bottom:215.985000px;}
.y8b{bottom:222.592200px;}
.ye9{bottom:224.854050px;}
.y114{bottom:225.154050px;}
.y134{bottom:226.439550px;}
.y14a{bottom:226.577250px;}
.yb8{bottom:237.143400px;}
.y33{bottom:238.380000px;}
.y8a{bottom:239.092200px;}
.ye8{bottom:241.354050px;}
.y113{bottom:241.654050px;}
.y149{bottom:243.077250px;}
.y25{bottom:248.070000px;}
.y1b8{bottom:253.185000px;}
.yb7{bottom:253.643400px;}
.ye7{bottom:257.854050px;}
.y112{bottom:258.154050px;}
.y148{bottom:259.577250px;}
.y133{bottom:260.939550px;}
.y24{bottom:268.050000px;}
.y32{bottom:268.440000px;}
.yb6{bottom:270.143400px;}
.y89{bottom:273.592200px;}
.ye6{bottom:274.354050px;}
.y111{bottom:274.654050px;}
.y147{bottom:276.077250px;}
.y132{bottom:277.439550px;}
.y58{bottom:281.055000px;}
.yb5{bottom:286.643400px;}
.y23{bottom:288.030000px;}
.y88{bottom:290.092200px;}
.y1b7{bottom:290.385000px;}
.ye5{bottom:290.854050px;}
.y110{bottom:291.154050px;}
.y31{bottom:291.975000px;}
.y146{bottom:292.577250px;}
.y131{bottom:293.939550px;}
.y57{bottom:301.080000px;}
.yb4{bottom:303.143400px;}
.y87{bottom:306.592200px;}
.ye4{bottom:307.354050px;}
.y10f{bottom:307.654050px;}
.y22{bottom:308.010000px;}
.y145{bottom:309.077250px;}
.y130{bottom:310.439550px;}
.y56{bottom:315.705000px;}
.yb3{bottom:319.643400px;}
.y86{bottom:323.092200px;}
.y30{bottom:323.805000px;}
.ye3{bottom:323.854050px;}
.y10e{bottom:324.154050px;}
.y144{bottom:325.577250px;}
.y12f{bottom:326.939550px;}
.y1b6{bottom:327.585000px;}
.y21{bottom:327.990000px;}
.y55{bottom:330.330000px;}
.yb2{bottom:336.143400px;}
.y85{bottom:339.592200px;}
.ye2{bottom:340.354050px;}
.y10d{bottom:340.654050px;}
.y143{bottom:342.077250px;}
.y12e{bottom:343.439550px;}
.y2f{bottom:347.340000px;}
.y20{bottom:347.970000px;}
.y1b5{bottom:349.785000px;}
.y54{bottom:350.355000px;}
.yb1{bottom:352.643400px;}
.y84{bottom:356.092200px;}
.ye1{bottom:356.854050px;}
.y142{bottom:358.577250px;}
.y12d{bottom:359.939550px;}
.y53{bottom:364.980000px;}
.y1f{bottom:367.950000px;}
.y10c{bottom:375.154050px;}
.y12c{bottom:376.439550px;}
.y52{bottom:379.605000px;}
.y1b4{bottom:386.985000px;}
.yb0{bottom:387.143400px;}
.y2e{bottom:387.435000px;}
.y1e{bottom:387.930000px;}
.y83{bottom:390.592200px;}
.ye0{bottom:391.354050px;}
.y141{bottom:391.577250px;}
.y10b{bottom:391.654050px;}
.y12b{bottom:392.939550px;}
.y1d4{bottom:397.305000px;}
.y51{bottom:399.630000px;}
.yaf{bottom:403.643400px;}
.y2d{bottom:404.175000px;}
.y82{bottom:407.092200px;}
.ydf{bottom:407.854050px;}
.y1d{bottom:407.910000px;}
.y140{bottom:408.077250px;}
.y10a{bottom:408.154050px;}
.y1b3{bottom:409.185000px;}
.y12a{bottom:409.439550px;}
.y50{bottom:414.255000px;}
.y1d3{bottom:419.505000px;}
.yae{bottom:420.143400px;}
.y81{bottom:423.592200px;}
.yde{bottom:424.354050px;}
.y13f{bottom:424.577250px;}
.y109{bottom:424.654050px;}
.y129{bottom:425.939550px;}
.y1c{bottom:426.675000px;}
.y4f{bottom:428.880000px;}
.yad{bottom:436.643400px;}
.y80{bottom:440.092200px;}
.ydd{bottom:440.854050px;}
.y13e{bottom:441.077250px;}
.y108{bottom:441.154050px;}
.y128{bottom:442.439550px;}
.y4e{bottom:443.505000px;}
.y1b{bottom:444.225000px;}
.y1b2{bottom:446.385000px;}
.y2c{bottom:447.225000px;}
.yac{bottom:453.143400px;}
.y7f{bottom:456.592200px;}
.y1d2{bottom:456.705000px;}
.ydc{bottom:457.354050px;}
.y13d{bottom:457.577250px;}
.y107{bottom:457.654050px;}
.y4d{bottom:458.130000px;}
.y127{bottom:458.939550px;}
.y1b1{bottom:468.585000px;}
.y4c{bottom:472.755000px;}
.y7e{bottom:473.092200px;}
.ydb{bottom:473.854050px;}
.y13c{bottom:474.077250px;}
.y106{bottom:474.154050px;}
.y126{bottom:475.439550px;}
.y19{bottom:478.530000px;}
.y2b{bottom:482.010000px;}
.y4b{bottom:487.380000px;}
.yab{bottom:487.643400px;}
.y7d{bottom:489.592200px;}
.yda{bottom:490.354050px;}
.y13b{bottom:490.577250px;}
.y105{bottom:490.654050px;}
.y125{bottom:491.939550px;}
.y18{bottom:493.530000px;}
.y1d1{bottom:493.905000px;}
.y4a{bottom:502.005000px;}
.yaa{bottom:504.143400px;}
.y1b0{bottom:505.785000px;}
.y7c{bottom:506.092200px;}
.yd9{bottom:506.854050px;}
.y13a{bottom:507.077250px;}
.y104{bottom:507.154050px;}
.y124{bottom:508.439550px;}
.y17{bottom:513.930000px;}
.y49{bottom:516.630000px;}
.ya9{bottom:520.643400px;}
.y7b{bottom:522.592200px;}
.yd8{bottom:523.354050px;}
.y139{bottom:523.577250px;}
.y2a{bottom:523.605000px;}
.y103{bottom:523.654050px;}
.y123{bottom:524.939550px;}
.y1a{bottom:526.380000px;}
.y1af{bottom:527.985000px;}
.y16{bottom:528.930000px;}
.y1d0{bottom:531.105000px;}
.y48{bottom:531.255000px;}
.y11d{bottom:533.773950px;}
.ya8{bottom:537.143400px;}
.y7a{bottom:539.092200px;}
.yd7{bottom:539.854050px;}
.y138{bottom:540.077250px;}
.y102{bottom:540.154050px;}
.y122{bottom:541.439550px;}
.y47{bottom:545.880000px;}
.y11c{bottom:548.023950px;}
.y1ae{bottom:548.835000px;}
.y1cf{bottom:553.305000px;}
.ya7{bottom:553.643400px;}
.yd6{bottom:556.354050px;}
.y137{bottom:556.577250px;}
.y101{bottom:556.654050px;}
.y11b{bottom:562.273950px;}
.y46{bottom:565.905000px;}
.y1ad{bottom:568.335000px;}
.yd5{bottom:572.854050px;}
.y100{bottom:573.154050px;}
.y79{bottom:573.592200px;}
.y11a{bottom:576.523950px;}
.y45{bottom:585.930000px;}
.y15{bottom:587.745000px;}
.y1ac{bottom:587.835000px;}
.ya6{bottom:588.143400px;}
.yd4{bottom:589.354050px;}
.y78{bottom:590.092200px;}
.y1ce{bottom:590.505000px;}
.y119{bottom:590.773950px;}
.y44{bottom:600.555000px;}
.y14{bottom:604.545000px;}
.ya5{bottom:604.643400px;}
.y118{bottom:605.023950px;}
.yd3{bottom:605.854050px;}
.y77{bottom:606.592200px;}
.y1ab{bottom:607.335000px;}
.yff{bottom:607.654050px;}
.y1cd{bottom:612.705000px;}
.y43{bottom:615.180000px;}
.y117{bottom:619.273950px;}
.y15d{bottom:620.251050px;}
.ya4{bottom:621.143400px;}
.y13{bottom:621.345000px;}
.yd2{bottom:622.354050px;}
.y76{bottom:623.092200px;}
.yfe{bottom:624.154050px;}
.y1aa{bottom:626.835000px;}
.y42{bottom:629.805000px;}
.y116{bottom:633.523950px;}
.ya3{bottom:637.643400px;}
.y12{bottom:638.145000px;}
.yd1{bottom:638.854050px;}
.y75{bottom:639.592200px;}
.yfd{bottom:640.654050px;}
.y41{bottom:644.430000px;}
.y15c{bottom:645.078900px;}
.y1a9{bottom:646.335000px;}
.y19d{bottom:648.188400px;}
.y17e{bottom:648.674400px;}
.y1cc{bottom:649.905000px;}
.y11{bottom:654.945000px;}
.yd0{bottom:655.354050px;}
.y74{bottom:656.092200px;}
.yfc{bottom:657.154050px;}
.y19c{bottom:658.988400px;}
.y40{bottom:659.055000px;}
.y17d{bottom:659.474550px;}
.y1a8{bottom:665.835000px;}
.y19b{bottom:669.788400px;}
.y15b{bottom:669.906600px;}
.y17c{bottom:670.274550px;}
.y10{bottom:671.745000px;}
.y1cb{bottom:672.105000px;}
.ya2{bottom:672.143400px;}
.y73{bottom:672.592200px;}
.yfb{bottom:673.654050px;}
.y3f{bottom:673.680000px;}
.y19a{bottom:680.588400px;}
.y17b{bottom:681.074550px;}
.y3e{bottom:688.305000px;}
.yf{bottom:688.545000px;}
.ya1{bottom:688.643400px;}
.y72{bottom:689.092200px;}
.ycf{bottom:689.854050px;}
.yfa{bottom:690.154050px;}
.y17a{bottom:691.874550px;}
.y15a{bottom:694.734450px;}
.y199{bottom:695.888400px;}
.y1a7{bottom:701.685000px;}
.y3d{bottom:702.930000px;}
.ya0{bottom:705.143400px;}
.y179{bottom:705.224550px;}
.ye{bottom:705.345000px;}
.y71{bottom:705.592200px;}
.yce{bottom:706.354050px;}
.yf9{bottom:706.654050px;}
.y198{bottom:706.688400px;}
.y1ca{bottom:709.305000px;}
.y178{bottom:716.024550px;}
.y197{bottom:717.488400px;}
.y3c{bottom:717.555000px;}
.y159{bottom:719.562300px;}
.y9f{bottom:721.643400px;}
.y70{bottom:722.092200px;}
.yd{bottom:722.145000px;}
.ycd{bottom:722.854050px;}
.yf8{bottom:723.154050px;}
.y1a6{bottom:725.040000px;}
.y177{bottom:726.824550px;}
.y1c9{bottom:731.505000px;}
.y3b{bottom:732.180000px;}
.y196{bottom:732.788400px;}
.yc{bottom:734.955000px;}
.y9e{bottom:738.143400px;}
.y6f{bottom:738.592200px;}
.ycc{bottom:739.354050px;}
.yf7{bottom:739.654050px;}
.y176{bottom:740.174400px;}
.y195{bottom:743.588400px;}
.y175{bottom:750.974550px;}
.y3a{bottom:752.205000px;}
.y1c8{bottom:752.355000px;}
.y194{bottom:754.388400px;}
.y6e{bottom:755.092200px;}
.yb{bottom:755.745000px;}
.ycb{bottom:755.854050px;}
.yf6{bottom:756.154050px;}
.y158{bottom:756.765150px;}
.y174{bottom:761.774550px;}
.y193{bottom:765.188400px;}
.y157{bottom:771.015150px;}
.y6d{bottom:771.592200px;}
.y1c7{bottom:771.855000px;}
.yca{bottom:772.354050px;}
.ya{bottom:772.545000px;}
.y9d{bottom:772.643400px;}
.yf5{bottom:772.654050px;}
.y173{bottom:775.124400px;}
.y192{bottom:775.988400px;}
.y1a5{bottom:779.895000px;}
.y172{bottom:785.924400px;}
.y6c{bottom:788.092200px;}
.yc9{bottom:788.854050px;}
.y9c{bottom:789.143400px;}
.yf4{bottom:789.154050px;}
.y191{bottom:791.288400px;}
.y1c6{bottom:791.355000px;}
.y171{bottom:796.724550px;}
.y1a4{bottom:799.395000px;}
.y9{bottom:800.730000px;}
.y190{bottom:802.088400px;}
.y6b{bottom:804.592200px;}
.yc8{bottom:805.354050px;}
.yf3{bottom:805.654050px;}
.y170{bottom:810.074550px;}
.y1c5{bottom:810.855000px;}
.y18f{bottom:812.888400px;}
.y5c{bottom:814.365000px;}
.y1a3{bottom:818.895000px;}
.y16f{bottom:820.874400px;}
.y6a{bottom:821.092200px;}
.yc7{bottom:821.854050px;}
.yf2{bottom:822.154050px;}
.y156{bottom:822.374700px;}
.y9b{bottom:823.643400px;}
.y18e{bottom:823.688400px;}
.y8{bottom:829.335000px;}
.y1c4{bottom:830.355000px;}
.y16e{bottom:831.674400px;}
.y69{bottom:837.592200px;}
.yc6{bottom:838.354050px;}
.yf1{bottom:838.654050px;}
.y18d{bottom:838.988400px;}
.y9a{bottom:840.143400px;}
.y16d{bottom:845.024550px;}
.y155{bottom:847.202400px;}
.y18c{bottom:849.788400px;}
.y1c3{bottom:849.855000px;}
.y68{bottom:854.092200px;}
.yc5{bottom:854.854050px;}
.yf0{bottom:855.154050px;}
.y16c{bottom:855.824550px;}
.y99{bottom:856.643400px;}
.y7{bottom:857.940000px;}
.y1a2{bottom:859.740000px;}
.y18b{bottom:860.588400px;}
.y16b{bottom:866.624400px;}
.y1c2{bottom:869.355000px;}
.y67{bottom:870.592200px;}
.yc4{bottom:871.354050px;}
.y18a{bottom:871.388400px;}
.yef{bottom:871.654050px;}
.y154{bottom:872.030250px;}
.y98{bottom:873.143400px;}
.y16a{bottom:877.424400px;}
.y189{bottom:882.188400px;}
.y6{bottom:886.560000px;}
.y66{bottom:887.092200px;}
.yc3{bottom:887.854050px;}
.yee{bottom:888.154050px;}
.y97{bottom:889.643400px;}
.y169{bottom:890.774550px;}
.y1a1{bottom:891.570000px;}
.y153{bottom:896.858100px;}
.y188{bottom:897.488400px;}
.y168{bottom:901.574550px;}
.y65{bottom:903.592200px;}
.yc2{bottom:904.354050px;}
.yed{bottom:904.654050px;}
.y1c1{bottom:905.205000px;}
.y96{bottom:906.143400px;}
.y187{bottom:908.288400px;}
.y167{bottom:912.374400px;}
.y5{bottom:915.165000px;}
.y186{bottom:919.088400px;}
.y64{bottom:920.092200px;}
.yc1{bottom:920.854050px;}
.yec{bottom:921.154050px;}
.y152{bottom:921.685950px;}
.y95{bottom:922.643400px;}
.y166{bottom:925.724550px;}
.y1c0{bottom:928.560000px;}
.y185{bottom:929.888400px;}
.y59{bottom:931.875000px;}
.y165{bottom:936.524550px;}
.y63{bottom:936.592200px;}
.yeb{bottom:937.654050px;}
.y94{bottom:939.143400px;}
.y1a0{bottom:941.145000px;}
.y184{bottom:945.188400px;}
.y151{bottom:946.513800px;}
.y4{bottom:946.620000px;}
.y164{bottom:947.324550px;}
.y62{bottom:953.092200px;}
.yc0{bottom:954.154050px;}
.y93{bottom:955.643400px;}
.y183{bottom:955.988400px;}
.y163{bottom:958.124400px;}
.y182{bottom:966.788400px;}
.y162{bottom:968.924400px;}
.y61{bottom:969.592200px;}
.ybf{bottom:970.654050px;}
.y150{bottom:971.341500px;}
.y92{bottom:972.143400px;}
.y3{bottom:973.470000px;}
.y181{bottom:982.088400px;}
.y161{bottom:982.274550px;}
.y1bf{bottom:983.415000px;}
.y60{bottom:986.092200px;}
.ybe{bottom:987.154050px;}
.y180{bottom:992.888400px;}
.y160{bottom:993.074550px;}
.y14f{bottom:996.169350px;}
.y5f{bottom:1002.592200px;}
.y1be{bottom:1002.915000px;}
.ybd{bottom:1003.654050px;}
.y17f{bottom:1003.688400px;}
.y15f{bottom:1003.874400px;}
.y19f{bottom:1006.350000px;}
.y91{bottom:1006.643400px;}
.y14e{bottom:1009.669350px;}
.y5e{bottom:1019.092200px;}
.y2{bottom:1020.540000px;}
.y1bd{bottom:1022.415000px;}
.y90{bottom:1023.143400px;}
.y15e{bottom:1041.704250px;}
.y14d{bottom:1046.872200px;}
.y19e{bottom:1052.055000px;}
.y1{bottom:1055.715000px;}
.y1bc{bottom:1063.260000px;}
.y35{bottom:1080.000000px;}
.y39{bottom:1123.500000px;}
.h17{height:27.540000px;}
.hd{height:32.130000px;}
.h16{height:33.984000px;}
.hf{height:34.425000px;}
.h15{height:36.720000px;}
.h5{height:37.778880px;}
.h1a{height:41.310000px;}
.h1c{height:41.364000px;}
.he{height:42.480000px;}
.h12{height:43.605000px;}
.h6{height:45.312000px;}
.h1b{height:45.900000px;}
.h1d{height:45.960000px;}
.h9{height:46.233000px;}
.h13{height:48.060000px;}
.h19{height:48.258000px;}
.ha{height:48.744000px;}
.h8{height:50.436000px;}
.h1{height:50.976000px;}
.h14{height:52.108800px;}
.h3{height:56.640000px;}
.h1e{height:61.965000px;}
.h4{height:73.632000px;}
.hc{height:76.464000px;}
.h7{height:78.456000px;}
.h18{height:82.728000px;}
.h2{height:89.664000px;}
.h10{height:93.225000px;}
.h11{height:106.260000px;}
.hb{height:108.000000px;}
.h0{height:1188.000000px;}
.w2{width:447.120000px;}
.w1{width:745.200000px;}
.w0{width:918.000000px;}
.w3{width:918.424500px;}
.w4{width:918.750000px;}
.x0{left:0.000000px;}
.xe{left:85.039350px;}
.x1{left:86.400000px;}
.xc{left:90.000000px;}
.xd{left:93.900000px;}
.xb{left:97.755000px;}
.x23{left:98.775000px;}
.x21{left:110.580900px;}
.x2{left:118.800000px;}
.x24{left:137.025000px;}
.x1d{left:219.250050px;}
.x1f{left:224.125050px;}
.x10{left:230.162550px;}
.x19{left:235.123050px;}
.x1a{left:236.905050px;}
.x1b{left:238.836900px;}
.x18{left:239.868900px;}
.x1c{left:243.036900px;}
.x20{left:284.071500px;}
.x1e{left:287.287500px;}
.x11{left:291.914700px;}
.x12{left:361.976250px;}
.x8{left:370.650000px;}
.x13{left:438.656550px;}
.xf{left:471.968550px;}
.x22{left:497.297400px;}
.x15{left:516.991800px;}
.x14{left:519.073950px;}
.xa{left:529.125000px;}
.x3{left:550.095000px;}
.x5{left:551.715000px;}
.x7{left:554.895000px;}
.x6{left:568.095000px;}
.x17{left:597.987150px;}
.x16{left:603.669000px;}
.x4{left:667.605000px;}
.x9{left:778.680000px;}
@media print{
.v2{vertical-align:-14.186667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.120000pt;}
.v1{vertical-align:19.200000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls5{letter-spacing:1.968000pt;}
.ls3{letter-spacing:2.688000pt;}
.ls4{letter-spacing:10.416000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws9{word-spacing:-13.968000pt;}
.ws6{word-spacing:-13.173333pt;}
.wsa{word-spacing:-12.757333pt;}
.ws0{word-spacing:-12.480000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.093333pt;}
.ws5{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.249067pt;}
.ws1b{word-spacing:-8.320000pt;}
.ws4{word-spacing:0.000000pt;}
.ws19{word-spacing:24.514667pt;}
.ws1a{word-spacing:30.106667pt;}
.ws17{word-spacing:54.333333pt;}
.ws18{word-spacing:57.963733pt;}
.wsc{word-spacing:79.556800pt;}
.ws10{word-spacing:81.198933pt;}
.ws16{word-spacing:91.247467pt;}
.wse{word-spacing:91.865600pt;}
.ws13{word-spacing:103.002133pt;}
.ws12{word-spacing:105.071467pt;}
.wsd{word-spacing:117.587733pt;}
.ws14{word-spacing:132.484267pt;}
.ws11{word-spacing:141.950400pt;}
.wsf{word-spacing:175.955733pt;}
.ws15{word-spacing:214.188267pt;}
.ws3{word-spacing:303.968000pt;}
.ws2{word-spacing:344.501333pt;}
._e{margin-left:-12.235200pt;}
._1a{margin-left:-10.977067pt;}
._7{margin-left:-5.328000pt;}
._14{margin-left:-3.840000pt;}
._16{margin-left:-2.078933pt;}
._4{margin-left:-1.013333pt;}
._b{width:0.897600pt;}
._28{width:2.568533pt;}
._22{width:3.600000pt;}
._13{width:4.752000pt;}
._12{width:6.485333pt;}
._9{width:7.584000pt;}
._1b{width:8.516267pt;}
._17{width:9.456000pt;}
._c{width:10.656000pt;}
._a{width:13.152000pt;}
._d{width:14.645333pt;}
._f{width:15.573333pt;}
._15{width:16.848000pt;}
._11{width:17.904000pt;}
._10{width:19.104000pt;}
._1{width:20.021333pt;}
._5{width:21.712533pt;}
._19{width:23.246933pt;}
._1c{width:24.645333pt;}
._6{width:25.920000pt;}
._18{width:26.928000pt;}
._8{width:28.320000pt;}
._21{width:29.904000pt;}
._23{width:30.960000pt;}
._25{width:32.016000pt;}
._1e{width:33.312000pt;}
._20{width:34.737067pt;}
._1d{width:35.678933pt;}
._1f{width:38.352000pt;}
._24{width:40.992000pt;}
._26{width:43.824000pt;}
._27{width:59.642667pt;}
._2{width:64.000000pt;}
._40{width:68.454933pt;}
._39{width:70.831467pt;}
._0{width:71.989333pt;}
._44{width:82.400000pt;}
._3a{width:88.571733pt;}
._3d{width:100.264000pt;}
._29{width:117.992533pt;}
._42{width:119.194133pt;}
._38{width:121.328533pt;}
._37{width:124.369067pt;}
._3b{width:136.240000pt;}
._2a{width:142.550933pt;}
._3c{width:151.536000pt;}
._30{width:154.732267pt;}
._45{width:156.368000pt;}
._3f{width:157.801067pt;}
._2b{width:178.536000pt;}
._31{width:183.916267pt;}
._32{width:190.717333pt;}
._41{width:191.960000pt;}
._3e{width:196.047467pt;}
._2d{width:200.918933pt;}
._2e{width:207.720000pt;}
._3{width:208.640000pt;}
._43{width:226.905067pt;}
._34{width:232.082667pt;}
._33{width:235.774400pt;}
._36{width:237.166400pt;}
._2c{width:248.964267pt;}
._2f{width:266.350400pt;}
._35{width:290.713067pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:35.573333pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fsd{font-size:49.066667pt;}
.fsc{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs3{font-size:69.333333pt;}
.fs9{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fse{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:14.866667pt;}
.y36{bottom:40.120000pt;}
.y5b{bottom:41.013333pt;}
.y38{bottom:54.666667pt;}
.y37{bottom:62.386667pt;}
.y5d{bottom:67.173333pt;}
.y121{bottom:73.400133pt;}
.y120{bottom:86.066800pt;}
.y11f{bottom:98.733467pt;}
.y11e{bottom:111.400133pt;}
.y1bb{bottom:129.000000pt;}
.y29{bottom:135.026667pt;}
.ybc{bottom:138.794133pt;}
.y8f{bottom:139.193067pt;}
.y28{bottom:150.626667pt;}
.ybb{bottom:153.460800pt;}
.y8e{bottom:153.859733pt;}
.y27{bottom:166.226667pt;}
.yba{bottom:168.127467pt;}
.y8d{bottom:168.526400pt;}
.y136{bottom:171.946267pt;}
.y14c{bottom:172.068667pt;}
.y1ba{bottom:172.253333pt;}
.y26{bottom:181.826667pt;}
.yb9{bottom:182.794133pt;}
.y8c{bottom:183.193067pt;}
.yea{bottom:185.203600pt;}
.y115{bottom:185.470267pt;}
.y135{bottom:186.612933pt;}
.y14b{bottom:186.735333pt;}
.y34{bottom:190.973333pt;}
.y1b9{bottom:191.986667pt;}
.y8b{bottom:197.859733pt;}
.ye9{bottom:199.870267pt;}
.y114{bottom:200.136933pt;}
.y134{bottom:201.279600pt;}
.y14a{bottom:201.402000pt;}
.yb8{bottom:210.794133pt;}
.y33{bottom:211.893333pt;}
.y8a{bottom:212.526400pt;}
.ye8{bottom:214.536933pt;}
.y113{bottom:214.803600pt;}
.y149{bottom:216.068667pt;}
.y25{bottom:220.506667pt;}
.y1b8{bottom:225.053333pt;}
.yb7{bottom:225.460800pt;}
.ye7{bottom:229.203600pt;}
.y112{bottom:229.470267pt;}
.y148{bottom:230.735333pt;}
.y133{bottom:231.946267pt;}
.y24{bottom:238.266667pt;}
.y32{bottom:238.613333pt;}
.yb6{bottom:240.127467pt;}
.y89{bottom:243.193067pt;}
.ye6{bottom:243.870267pt;}
.y111{bottom:244.136933pt;}
.y147{bottom:245.402000pt;}
.y132{bottom:246.612933pt;}
.y58{bottom:249.826667pt;}
.yb5{bottom:254.794133pt;}
.y23{bottom:256.026667pt;}
.y88{bottom:257.859733pt;}
.y1b7{bottom:258.120000pt;}
.ye5{bottom:258.536933pt;}
.y110{bottom:258.803600pt;}
.y31{bottom:259.533333pt;}
.y146{bottom:260.068667pt;}
.y131{bottom:261.279600pt;}
.y57{bottom:267.626667pt;}
.yb4{bottom:269.460800pt;}
.y87{bottom:272.526400pt;}
.ye4{bottom:273.203600pt;}
.y10f{bottom:273.470267pt;}
.y22{bottom:273.786667pt;}
.y145{bottom:274.735333pt;}
.y130{bottom:275.946267pt;}
.y56{bottom:280.626667pt;}
.yb3{bottom:284.127467pt;}
.y86{bottom:287.193067pt;}
.y30{bottom:287.826667pt;}
.ye3{bottom:287.870267pt;}
.y10e{bottom:288.136933pt;}
.y144{bottom:289.402000pt;}
.y12f{bottom:290.612933pt;}
.y1b6{bottom:291.186667pt;}
.y21{bottom:291.546667pt;}
.y55{bottom:293.626667pt;}
.yb2{bottom:298.794133pt;}
.y85{bottom:301.859733pt;}
.ye2{bottom:302.536933pt;}
.y10d{bottom:302.803600pt;}
.y143{bottom:304.068667pt;}
.y12e{bottom:305.279600pt;}
.y2f{bottom:308.746667pt;}
.y20{bottom:309.306667pt;}
.y1b5{bottom:310.920000pt;}
.y54{bottom:311.426667pt;}
.yb1{bottom:313.460800pt;}
.y84{bottom:316.526400pt;}
.ye1{bottom:317.203600pt;}
.y142{bottom:318.735333pt;}
.y12d{bottom:319.946267pt;}
.y53{bottom:324.426667pt;}
.y1f{bottom:327.066667pt;}
.y10c{bottom:333.470267pt;}
.y12c{bottom:334.612933pt;}
.y52{bottom:337.426667pt;}
.y1b4{bottom:343.986667pt;}
.yb0{bottom:344.127467pt;}
.y2e{bottom:344.386667pt;}
.y1e{bottom:344.826667pt;}
.y83{bottom:347.193067pt;}
.ye0{bottom:347.870267pt;}
.y141{bottom:348.068667pt;}
.y10b{bottom:348.136933pt;}
.y12b{bottom:349.279600pt;}
.y1d4{bottom:353.160000pt;}
.y51{bottom:355.226667pt;}
.yaf{bottom:358.794133pt;}
.y2d{bottom:359.266667pt;}
.y82{bottom:361.859733pt;}
.ydf{bottom:362.536933pt;}
.y1d{bottom:362.586667pt;}
.y140{bottom:362.735333pt;}
.y10a{bottom:362.803600pt;}
.y1b3{bottom:363.720000pt;}
.y12a{bottom:363.946267pt;}
.y50{bottom:368.226667pt;}
.y1d3{bottom:372.893333pt;}
.yae{bottom:373.460800pt;}
.y81{bottom:376.526400pt;}
.yde{bottom:377.203600pt;}
.y13f{bottom:377.402000pt;}
.y109{bottom:377.470267pt;}
.y129{bottom:378.612933pt;}
.y1c{bottom:379.266667pt;}
.y4f{bottom:381.226667pt;}
.yad{bottom:388.127467pt;}
.y80{bottom:391.193067pt;}
.ydd{bottom:391.870267pt;}
.y13e{bottom:392.068667pt;}
.y108{bottom:392.136933pt;}
.y128{bottom:393.279600pt;}
.y4e{bottom:394.226667pt;}
.y1b{bottom:394.866667pt;}
.y1b2{bottom:396.786667pt;}
.y2c{bottom:397.533333pt;}
.yac{bottom:402.794133pt;}
.y7f{bottom:405.859733pt;}
.y1d2{bottom:405.960000pt;}
.ydc{bottom:406.536933pt;}
.y13d{bottom:406.735333pt;}
.y107{bottom:406.803600pt;}
.y4d{bottom:407.226667pt;}
.y127{bottom:407.946267pt;}
.y1b1{bottom:416.520000pt;}
.y4c{bottom:420.226667pt;}
.y7e{bottom:420.526400pt;}
.ydb{bottom:421.203600pt;}
.y13c{bottom:421.402000pt;}
.y106{bottom:421.470267pt;}
.y126{bottom:422.612933pt;}
.y19{bottom:425.360000pt;}
.y2b{bottom:428.453333pt;}
.y4b{bottom:433.226667pt;}
.yab{bottom:433.460800pt;}
.y7d{bottom:435.193067pt;}
.yda{bottom:435.870267pt;}
.y13b{bottom:436.068667pt;}
.y105{bottom:436.136933pt;}
.y125{bottom:437.279600pt;}
.y18{bottom:438.693333pt;}
.y1d1{bottom:439.026667pt;}
.y4a{bottom:446.226667pt;}
.yaa{bottom:448.127467pt;}
.y1b0{bottom:449.586667pt;}
.y7c{bottom:449.859733pt;}
.yd9{bottom:450.536933pt;}
.y13a{bottom:450.735333pt;}
.y104{bottom:450.803600pt;}
.y124{bottom:451.946267pt;}
.y17{bottom:456.826667pt;}
.y49{bottom:459.226667pt;}
.ya9{bottom:462.794133pt;}
.y7b{bottom:464.526400pt;}
.yd8{bottom:465.203600pt;}
.y139{bottom:465.402000pt;}
.y2a{bottom:465.426667pt;}
.y103{bottom:465.470267pt;}
.y123{bottom:466.612933pt;}
.y1a{bottom:467.893333pt;}
.y1af{bottom:469.320000pt;}
.y16{bottom:470.160000pt;}
.y1d0{bottom:472.093333pt;}
.y48{bottom:472.226667pt;}
.y11d{bottom:474.465733pt;}
.ya8{bottom:477.460800pt;}
.y7a{bottom:479.193067pt;}
.yd7{bottom:479.870267pt;}
.y138{bottom:480.068667pt;}
.y102{bottom:480.136933pt;}
.y122{bottom:481.279600pt;}
.y47{bottom:485.226667pt;}
.y11c{bottom:487.132400pt;}
.y1ae{bottom:487.853333pt;}
.y1cf{bottom:491.826667pt;}
.ya7{bottom:492.127467pt;}
.yd6{bottom:494.536933pt;}
.y137{bottom:494.735333pt;}
.y101{bottom:494.803600pt;}
.y11b{bottom:499.799067pt;}
.y46{bottom:503.026667pt;}
.y1ad{bottom:505.186667pt;}
.yd5{bottom:509.203600pt;}
.y100{bottom:509.470267pt;}
.y79{bottom:509.859733pt;}
.y11a{bottom:512.465733pt;}
.y45{bottom:520.826667pt;}
.y15{bottom:522.440000pt;}
.y1ac{bottom:522.520000pt;}
.ya6{bottom:522.794133pt;}
.yd4{bottom:523.870267pt;}
.y78{bottom:524.526400pt;}
.y1ce{bottom:524.893333pt;}
.y119{bottom:525.132400pt;}
.y44{bottom:533.826667pt;}
.y14{bottom:537.373333pt;}
.ya5{bottom:537.460800pt;}
.y118{bottom:537.799067pt;}
.yd3{bottom:538.536933pt;}
.y77{bottom:539.193067pt;}
.y1ab{bottom:539.853333pt;}
.yff{bottom:540.136933pt;}
.y1cd{bottom:544.626667pt;}
.y43{bottom:546.826667pt;}
.y117{bottom:550.465733pt;}
.y15d{bottom:551.334267pt;}
.ya4{bottom:552.127467pt;}
.y13{bottom:552.306667pt;}
.yd2{bottom:553.203600pt;}
.y76{bottom:553.859733pt;}
.yfe{bottom:554.803600pt;}
.y1aa{bottom:557.186667pt;}
.y42{bottom:559.826667pt;}
.y116{bottom:563.132400pt;}
.ya3{bottom:566.794133pt;}
.y12{bottom:567.240000pt;}
.yd1{bottom:567.870267pt;}
.y75{bottom:568.526400pt;}
.yfd{bottom:569.470267pt;}
.y41{bottom:572.826667pt;}
.y15c{bottom:573.403467pt;}
.y1a9{bottom:574.520000pt;}
.y19d{bottom:576.167467pt;}
.y17e{bottom:576.599467pt;}
.y1cc{bottom:577.693333pt;}
.y11{bottom:582.173333pt;}
.yd0{bottom:582.536933pt;}
.y74{bottom:583.193067pt;}
.yfc{bottom:584.136933pt;}
.y19c{bottom:585.767467pt;}
.y40{bottom:585.826667pt;}
.y17d{bottom:586.199600pt;}
.y1a8{bottom:591.853333pt;}
.y19b{bottom:595.367467pt;}
.y15b{bottom:595.472533pt;}
.y17c{bottom:595.799600pt;}
.y10{bottom:597.106667pt;}
.y1cb{bottom:597.426667pt;}
.ya2{bottom:597.460800pt;}
.y73{bottom:597.859733pt;}
.yfb{bottom:598.803600pt;}
.y3f{bottom:598.826667pt;}
.y19a{bottom:604.967467pt;}
.y17b{bottom:605.399600pt;}
.y3e{bottom:611.826667pt;}
.yf{bottom:612.040000pt;}
.ya1{bottom:612.127467pt;}
.y72{bottom:612.526400pt;}
.ycf{bottom:613.203600pt;}
.yfa{bottom:613.470267pt;}
.y17a{bottom:614.999600pt;}
.y15a{bottom:617.541733pt;}
.y199{bottom:618.567467pt;}
.y1a7{bottom:623.720000pt;}
.y3d{bottom:624.826667pt;}
.ya0{bottom:626.794133pt;}
.y179{bottom:626.866267pt;}
.ye{bottom:626.973333pt;}
.y71{bottom:627.193067pt;}
.yce{bottom:627.870267pt;}
.yf9{bottom:628.136933pt;}
.y198{bottom:628.167467pt;}
.y1ca{bottom:630.493333pt;}
.y178{bottom:636.466267pt;}
.y197{bottom:637.767467pt;}
.y3c{bottom:637.826667pt;}
.y159{bottom:639.610933pt;}
.y9f{bottom:641.460800pt;}
.y70{bottom:641.859733pt;}
.yd{bottom:641.906667pt;}
.ycd{bottom:642.536933pt;}
.yf8{bottom:642.803600pt;}
.y1a6{bottom:644.480000pt;}
.y177{bottom:646.066267pt;}
.y1c9{bottom:650.226667pt;}
.y3b{bottom:650.826667pt;}
.y196{bottom:651.367467pt;}
.yc{bottom:653.293333pt;}
.y9e{bottom:656.127467pt;}
.y6f{bottom:656.526400pt;}
.ycc{bottom:657.203600pt;}
.yf7{bottom:657.470267pt;}
.y176{bottom:657.932800pt;}
.y195{bottom:660.967467pt;}
.y175{bottom:667.532933pt;}
.y3a{bottom:668.626667pt;}
.y1c8{bottom:668.760000pt;}
.y194{bottom:670.567467pt;}
.y6e{bottom:671.193067pt;}
.yb{bottom:671.773333pt;}
.ycb{bottom:671.870267pt;}
.yf6{bottom:672.136933pt;}
.y158{bottom:672.680133pt;}
.y174{bottom:677.132933pt;}
.y193{bottom:680.167467pt;}
.y157{bottom:685.346800pt;}
.y6d{bottom:685.859733pt;}
.y1c7{bottom:686.093333pt;}
.yca{bottom:686.536933pt;}
.ya{bottom:686.706667pt;}
.y9d{bottom:686.794133pt;}
.yf5{bottom:686.803600pt;}
.y173{bottom:688.999467pt;}
.y192{bottom:689.767467pt;}
.y1a5{bottom:693.240000pt;}
.y172{bottom:698.599467pt;}
.y6c{bottom:700.526400pt;}
.yc9{bottom:701.203600pt;}
.y9c{bottom:701.460800pt;}
.yf4{bottom:701.470267pt;}
.y191{bottom:703.367467pt;}
.y1c6{bottom:703.426667pt;}
.y171{bottom:708.199600pt;}
.y1a4{bottom:710.573333pt;}
.y9{bottom:711.760000pt;}
.y190{bottom:712.967467pt;}
.y6b{bottom:715.193067pt;}
.yc8{bottom:715.870267pt;}
.yf3{bottom:716.136933pt;}
.y170{bottom:720.066267pt;}
.y1c5{bottom:720.760000pt;}
.y18f{bottom:722.567467pt;}
.y5c{bottom:723.880000pt;}
.y1a3{bottom:727.906667pt;}
.y16f{bottom:729.666133pt;}
.y6a{bottom:729.859733pt;}
.yc7{bottom:730.536933pt;}
.yf2{bottom:730.803600pt;}
.y156{bottom:730.999733pt;}
.y9b{bottom:732.127467pt;}
.y18e{bottom:732.167467pt;}
.y8{bottom:737.186667pt;}
.y1c4{bottom:738.093333pt;}
.y16e{bottom:739.266133pt;}
.y69{bottom:744.526400pt;}
.yc6{bottom:745.203600pt;}
.yf1{bottom:745.470267pt;}
.y18d{bottom:745.767467pt;}
.y9a{bottom:746.794133pt;}
.y16d{bottom:751.132933pt;}
.y155{bottom:753.068800pt;}
.y18c{bottom:755.367467pt;}
.y1c3{bottom:755.426667pt;}
.y68{bottom:759.193067pt;}
.yc5{bottom:759.870267pt;}
.yf0{bottom:760.136933pt;}
.y16c{bottom:760.732933pt;}
.y99{bottom:761.460800pt;}
.y7{bottom:762.613333pt;}
.y1a2{bottom:764.213333pt;}
.y18b{bottom:764.967467pt;}
.y16b{bottom:770.332800pt;}
.y1c2{bottom:772.760000pt;}
.y67{bottom:773.859733pt;}
.yc4{bottom:774.536933pt;}
.y18a{bottom:774.567467pt;}
.yef{bottom:774.803600pt;}
.y154{bottom:775.138000pt;}
.y98{bottom:776.127467pt;}
.y16a{bottom:779.932800pt;}
.y189{bottom:784.167467pt;}
.y6{bottom:788.053333pt;}
.y66{bottom:788.526400pt;}
.yc3{bottom:789.203600pt;}
.yee{bottom:789.470267pt;}
.y97{bottom:790.794133pt;}
.y169{bottom:791.799600pt;}
.y1a1{bottom:792.506667pt;}
.y153{bottom:797.207200pt;}
.y188{bottom:797.767467pt;}
.y168{bottom:801.399600pt;}
.y65{bottom:803.193067pt;}
.yc2{bottom:803.870267pt;}
.yed{bottom:804.136933pt;}
.y1c1{bottom:804.626667pt;}
.y96{bottom:805.460800pt;}
.y187{bottom:807.367467pt;}
.y167{bottom:810.999467pt;}
.y5{bottom:813.480000pt;}
.y186{bottom:816.967467pt;}
.y64{bottom:817.859733pt;}
.yc1{bottom:818.536933pt;}
.yec{bottom:818.803600pt;}
.y152{bottom:819.276400pt;}
.y95{bottom:820.127467pt;}
.y166{bottom:822.866267pt;}
.y1c0{bottom:825.386667pt;}
.y185{bottom:826.567467pt;}
.y59{bottom:828.333333pt;}
.y165{bottom:832.466267pt;}
.y63{bottom:832.526400pt;}
.yeb{bottom:833.470267pt;}
.y94{bottom:834.794133pt;}
.y1a0{bottom:836.573333pt;}
.y184{bottom:840.167467pt;}
.y151{bottom:841.345600pt;}
.y4{bottom:841.440000pt;}
.y164{bottom:842.066267pt;}
.y62{bottom:847.193067pt;}
.yc0{bottom:848.136933pt;}
.y93{bottom:849.460800pt;}
.y183{bottom:849.767467pt;}
.y163{bottom:851.666133pt;}
.y182{bottom:859.367467pt;}
.y162{bottom:861.266133pt;}
.y61{bottom:861.859733pt;}
.ybf{bottom:862.803600pt;}
.y150{bottom:863.414667pt;}
.y92{bottom:864.127467pt;}
.y3{bottom:865.306667pt;}
.y181{bottom:872.967467pt;}
.y161{bottom:873.132933pt;}
.y1bf{bottom:874.146667pt;}
.y60{bottom:876.526400pt;}
.ybe{bottom:877.470267pt;}
.y180{bottom:882.567467pt;}
.y160{bottom:882.732933pt;}
.y14f{bottom:885.483867pt;}
.y5f{bottom:891.193067pt;}
.y1be{bottom:891.480000pt;}
.ybd{bottom:892.136933pt;}
.y17f{bottom:892.167467pt;}
.y15f{bottom:892.332800pt;}
.y19f{bottom:894.533333pt;}
.y91{bottom:894.794133pt;}
.y14e{bottom:897.483867pt;}
.y5e{bottom:905.859733pt;}
.y2{bottom:907.146667pt;}
.y1bd{bottom:908.813333pt;}
.y90{bottom:909.460800pt;}
.y15e{bottom:925.959333pt;}
.y14d{bottom:930.553067pt;}
.y19e{bottom:935.160000pt;}
.y1{bottom:938.413333pt;}
.y1bc{bottom:945.120000pt;}
.y35{bottom:960.000000pt;}
.y39{bottom:998.666667pt;}
.h17{height:24.480000pt;}
.hd{height:28.560000pt;}
.h16{height:30.208000pt;}
.hf{height:30.600000pt;}
.h15{height:32.640000pt;}
.h5{height:33.581227pt;}
.h1a{height:36.720000pt;}
.h1c{height:36.768000pt;}
.he{height:37.760000pt;}
.h12{height:38.760000pt;}
.h6{height:40.277333pt;}
.h1b{height:40.800000pt;}
.h1d{height:40.853333pt;}
.h9{height:41.096000pt;}
.h13{height:42.720000pt;}
.h19{height:42.896000pt;}
.ha{height:43.328000pt;}
.h8{height:44.832000pt;}
.h1{height:45.312000pt;}
.h14{height:46.318933pt;}
.h3{height:50.346667pt;}
.h1e{height:55.080000pt;}
.h4{height:65.450667pt;}
.hc{height:67.968000pt;}
.h7{height:69.738667pt;}
.h18{height:73.536000pt;}
.h2{height:79.701333pt;}
.h10{height:82.866667pt;}
.h11{height:94.453333pt;}
.hb{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:397.440000pt;}
.w1{width:662.400000pt;}
.w0{width:816.000000pt;}
.w3{width:816.377333pt;}
.w4{width:816.666667pt;}
.x0{left:0.000000pt;}
.xe{left:75.590533pt;}
.x1{left:76.800000pt;}
.xc{left:80.000000pt;}
.xd{left:83.466667pt;}
.xb{left:86.893333pt;}
.x23{left:87.800000pt;}
.x21{left:98.294133pt;}
.x2{left:105.600000pt;}
.x24{left:121.800000pt;}
.x1d{left:194.888933pt;}
.x1f{left:199.222267pt;}
.x10{left:204.588933pt;}
.x19{left:208.998267pt;}
.x1a{left:210.582267pt;}
.x1b{left:212.299467pt;}
.x18{left:213.216800pt;}
.x1c{left:216.032800pt;}
.x20{left:252.508000pt;}
.x1e{left:255.366667pt;}
.x11{left:259.479733pt;}
.x12{left:321.756667pt;}
.x8{left:329.466667pt;}
.x13{left:389.916933pt;}
.xf{left:419.527600pt;}
.x22{left:442.042133pt;}
.x15{left:459.548267pt;}
.x14{left:461.399067pt;}
.xa{left:470.333333pt;}
.x3{left:488.973333pt;}
.x5{left:490.413333pt;}
.x7{left:493.240000pt;}
.x6{left:504.973333pt;}
.x17{left:531.544133pt;}
.x16{left:536.594667pt;}
.x4{left:593.426667pt;}
.x9{left:692.160000pt;}
}




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