
    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_37017eb08480849611c50772.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_958066a008a151982318f2b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_901f320545814bc5434f03fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_ba8eeeac76998bb477358b67.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_e2c4ee45ba85ef8695fb6530.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_cb276ddfb0774a4038499f43.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.972000px;}
.ls8{letter-spacing:-0.942000px;}
.ls15{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.486600px;}
.lsf{letter-spacing:-0.466800px;}
.ls22{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.020160px;}
.lsd{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.015600px;}
.ls2{letter-spacing:0.015840px;}
.ls0{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.195840px;}
.lse{letter-spacing:0.250800px;}
.ls17{letter-spacing:0.423360px;}
.ls13{letter-spacing:0.466800px;}
.ls19{letter-spacing:0.486600px;}
.ls23{letter-spacing:0.501000px;}
.ls18{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.519840px;}
.ls10{letter-spacing:0.665280px;}
.lsa{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.188000px;}
.ls12{letter-spacing:9.106560px;}
.ls11{letter-spacing:13.426560px;}
.ls1b{letter-spacing:24.946560px;}
.ls16{letter-spacing:26.386560px;}
.ls21{letter-spacing:58.789440px;}
.ls20{letter-spacing:63.826560px;}
.ls1e{letter-spacing:91.186560px;}
.ls1c{letter-spacing:91.306560px;}
.ls1f{letter-spacing:92.626560px;}
.ls1d{letter-spacing:92.746560px;}
.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;}
}
.ws10{word-spacing:-60.480000px;}
.wsf{word-spacing:-15.606600px;}
.wsb{word-spacing:-15.586800px;}
.wse{word-spacing:-15.543360px;}
.ws4{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.099840px;}
.wsd{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.ws1{word-spacing:-13.680000px;}
.ws8{word-spacing:-12.600000px;}
.ws11{word-spacing:-12.381000px;}
.ws7{word-spacing:-12.130800px;}
.ws5{word-spacing:-11.895600px;}
.ws2{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.864400px;}
.wsa{word-spacing:0.000000px;}
.ws9{word-spacing:12.453840px;}
.ws3{word-spacing:29.773080px;}
._1d{margin-left:-4.053612px;}
._1c{margin-left:-2.593768px;}
._0{margin-left:-1.451399px;}
._1{width:1.441678px;}
._2{width:2.457961px;}
._4{width:3.694798px;}
._3{width:4.827239px;}
._f{width:6.405097px;}
._6{width:8.105763px;}
._5{width:9.247844px;}
._7{width:10.915949px;}
._10{width:12.569403px;}
._14{width:13.667996px;}
._a{width:15.283536px;}
._22{width:16.934400px;}
._9{width:17.982818px;}
._8{width:19.367758px;}
._12{width:21.070486px;}
._27{width:22.112940px;}
._d{width:23.560972px;}
._e{width:25.506603px;}
._17{width:26.731797px;}
._b{width:27.855118px;}
._c{width:29.658568px;}
._11{width:31.097337px;}
._13{width:32.521932px;}
._1b{width:33.808199px;}
._15{width:35.112476px;}
._16{width:36.163680px;}
._1a{width:37.749120px;}
._18{width:39.133440px;}
._19{width:40.222435px;}
._28{width:41.431891px;}
._29{width:42.994166px;}
._26{width:44.937690px;}
._25{width:46.268999px;}
._24{width:47.298088px;}
._23{width:48.431879px;}
._36{width:49.699926px;}
._2f{width:51.044999px;}
._30{width:52.859520px;}
._1e{width:54.394417px;}
._2e{width:56.246400px;}
._2c{width:57.274560px;}
._2d{width:58.483918px;}
._1f{width:62.779442px;}
._20{width:63.969362px;}
._3d{width:65.355114px;}
._35{width:66.543782px;}
._34{width:67.918919px;}
._3c{width:69.086306px;}
._21{width:74.623485px;}
._31{width:75.781198px;}
._33{width:76.930318px;}
._32{width:78.563399px;}
._37{width:89.449920px;}
._3f{width:100.631848px;}
._3e{width:101.931719px;}
._39{width:104.388359px;}
._38{width:106.040367px;}
._2a{width:117.694201px;}
._3a{width:126.175438px;}
._41{width:173.384402px;}
._40{width:174.762482px;}
._3b{width:220.570560px;}
._2b{width:317.612730px;}
.fc4{color:rgb(0,0,204);}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.520000px;}
.y7{bottom:4.680000px;}
.y4{bottom:10.836000px;}
.y8{bottom:13.716000px;}
.ya{bottom:16.560000px;}
.y6{bottom:18.720000px;}
.y3{bottom:19.116000px;}
.y9{bottom:30.240000px;}
.y5{bottom:32.400000px;}
.ye8{bottom:79.956000px;}
.y11a{bottom:84.636000px;}
.yb7{bottom:86.436000px;}
.y1eb{bottom:88.236000px;}
.y44{bottom:91.836000px;}
.y1c5{bottom:92.556000px;}
.y1b0{bottom:93.636000px;}
.y78{bottom:95.436000px;}
.y151{bottom:97.236000px;}
.ye7{bottom:97.956000px;}
.y119{bottom:102.636000px;}
.yb6{bottom:104.436000px;}
.y43{bottom:105.516000px;}
.y1ea{bottom:106.596000px;}
.y1c4{bottom:110.556000px;}
.y1af{bottom:111.636000px;}
.y77{bottom:113.796000px;}
.y150{bottom:115.236000px;}
.ye6{bottom:116.316000px;}
.y42{bottom:119.556000px;}
.y118{bottom:120.636000px;}
.yb5{bottom:122.436000px;}
.y1e9{bottom:124.596000px;}
.y1c3{bottom:128.916000px;}
.y1ae{bottom:129.636000px;}
.y76{bottom:131.832000px;}
.y14f{bottom:133.632000px;}
.ye5{bottom:134.352000px;}
.y17c{bottom:138.672000px;}
.y117{bottom:139.032000px;}
.yb4{bottom:140.472000px;}
.y1e8{bottom:142.632000px;}
.y41{bottom:146.952000px;}
.y1ad{bottom:148.032000px;}
.y75{bottom:149.832000px;}
.y14e{bottom:151.635000px;}
.ye4{bottom:152.355000px;}
.y116{bottom:157.035000px;}
.yb3{bottom:158.835000px;}
.y1e7{bottom:160.635000px;}
.y40{bottom:160.995000px;}
.y1c2{bottom:164.955000px;}
.y1ac{bottom:166.035000px;}
.y74{bottom:168.195000px;}
.y14d{bottom:169.635000px;}
.ye3{bottom:170.715000px;}
.y115{bottom:175.035000px;}
.y3f{bottom:175.395000px;}
.yb2{bottom:176.835000px;}
.y1e6{bottom:178.995000px;}
.y1c1{bottom:183.315000px;}
.y73{bottom:186.195000px;}
.y14c{bottom:187.635000px;}
.ye2{bottom:188.715000px;}
.y3e{bottom:192.315000px;}
.y17b{bottom:193.035000px;}
.y114{bottom:193.395000px;}
.yb1{bottom:194.835000px;}
.y1e5{bottom:196.995000px;}
.y1c0{bottom:201.315000px;}
.y72{bottom:204.195000px;}
.y14b{bottom:205.995000px;}
.ye1{bottom:206.715000px;}
.y3d{bottom:207.795000px;}
.y113{bottom:211.395000px;}
.yb0{bottom:213.195000px;}
.y1ab{bottom:214.995000px;}
.y1bf{bottom:219.315000px;}
.y71{bottom:222.555000px;}
.y3c{bottom:223.275000px;}
.y14a{bottom:223.995000px;}
.ye0{bottom:224.715000px;}
.y112{bottom:229.395000px;}
.yaf{bottom:231.195000px;}
.y1aa{bottom:232.995000px;}
.y1e4{bottom:233.355000px;}
.y1be{bottom:237.675000px;}
.y3b{bottom:238.755000px;}
.y70{bottom:240.555000px;}
.y149{bottom:241.995000px;}
.ydf{bottom:243.075000px;}
.y17a{bottom:247.395000px;}
.y111{bottom:247.755000px;}
.yae{bottom:249.195000px;}
.y1a9{bottom:250.995000px;}
.y1e3{bottom:251.355000px;}
.y3a{bottom:254.235000px;}
.y1bd{bottom:255.675000px;}
.y6f{bottom:258.555000px;}
.y148{bottom:260.355000px;}
.yde{bottom:261.075000px;}
.y110{bottom:265.785000px;}
.yad{bottom:267.585000px;}
.y1a8{bottom:269.385000px;}
.y39{bottom:269.745000px;}
.y1bc{bottom:273.705000px;}
.y6e{bottom:276.585000px;}
.y147{bottom:278.385000px;}
.ydd{bottom:279.105000px;}
.y10f{bottom:283.785000px;}
.yac{bottom:285.585000px;}
.y1a7{bottom:287.385000px;}
.y1e2{bottom:287.745000px;}
.y1bb{bottom:291.705000px;}
.y6d{bottom:294.945000px;}
.y146{bottom:296.385000px;}
.ydc{bottom:297.465000px;}
.y179{bottom:301.785000px;}
.y10e{bottom:302.145000px;}
.yab{bottom:303.585000px;}
.y1a6{bottom:305.385000px;}
.y1e1{bottom:305.745000px;}
.y1ba{bottom:310.065000px;}
.y6c{bottom:312.945000px;}
.y38{bottom:313.305000px;}
.y145{bottom:314.745000px;}
.ydb{bottom:315.465000px;}
.y10d{bottom:320.145000px;}
.yaa{bottom:321.945000px;}
.y1a5{bottom:323.745000px;}
.y1b9{bottom:328.065000px;}
.y6b{bottom:330.945000px;}
.y37{bottom:331.305000px;}
.y144{bottom:332.745000px;}
.yda{bottom:333.465000px;}
.y10c{bottom:338.145000px;}
.ya9{bottom:339.945000px;}
.y1a4{bottom:341.745000px;}
.y1e0{bottom:342.105000px;}
.y1b8{bottom:346.065000px;}
.y6a{bottom:349.305000px;}
.y36{bottom:349.665000px;}
.y143{bottom:350.745000px;}
.yd9{bottom:351.825000px;}
.y10b{bottom:356.145000px;}
.ya8{bottom:357.945000px;}
.y1a3{bottom:359.745000px;}
.y1df{bottom:360.105000px;}
.y1b7{bottom:364.425000px;}
.y69{bottom:367.305000px;}
.y35{bottom:367.665000px;}
.y142{bottom:369.105000px;}
.yd8{bottom:369.825000px;}
.y178{bottom:374.145000px;}
.y10a{bottom:374.505000px;}
.ya7{bottom:375.945000px;}
.y1a2{bottom:378.105000px;}
.y1b6{bottom:382.425000px;}
.y68{bottom:385.305000px;}
.y34{bottom:385.665000px;}
.y141{bottom:387.105000px;}
.yd7{bottom:387.825000px;}
.y109{bottom:392.505000px;}
.ya6{bottom:394.305000px;}
.y1a1{bottom:396.105000px;}
.y1b5{bottom:400.470000px;}
.y67{bottom:403.710000px;}
.y33{bottom:404.070000px;}
.y140{bottom:405.150000px;}
.yd6{bottom:406.230000px;}
.y108{bottom:410.550000px;}
.ya5{bottom:412.350000px;}
.y1a0{bottom:414.150000px;}
.y1de{bottom:414.510000px;}
.y1b4{bottom:418.830000px;}
.y66{bottom:421.710000px;}
.y32{bottom:422.070000px;}
.y13f{bottom:423.150000px;}
.yd5{bottom:424.230000px;}
.y177{bottom:428.550000px;}
.y107{bottom:428.910000px;}
.ya4{bottom:430.350000px;}
.y19f{bottom:432.150000px;}
.y1b3{bottom:436.830000px;}
.y65{bottom:439.710000px;}
.y31{bottom:440.070000px;}
.y1dd{bottom:440.790000px;}
.y13e{bottom:441.510000px;}
.yd4{bottom:445.830000px;}
.y106{bottom:446.910000px;}
.ya3{bottom:448.710000px;}
.y19e{bottom:450.510000px;}
.y1b2{bottom:454.830000px;}
.y30{bottom:458.070000px;}
.y13d{bottom:459.510000px;}
.y64{bottom:461.670000px;}
.y105{bottom:464.910000px;}
.ya2{bottom:466.710000px;}
.y19d{bottom:468.510000px;}
.yd3{bottom:473.190000px;}
.y2f{bottom:476.430000px;}
.y1dc{bottom:476.790000px;}
.y13c{bottom:477.510000px;}
.y63{bottom:478.950000px;}
.y176{bottom:482.910000px;}
.y104{bottom:483.270000px;}
.ya1{bottom:484.710000px;}
.y19c{bottom:486.510000px;}
.yd2{bottom:491.190000px;}
.y2e{bottom:494.430000px;}
.y1db{bottom:494.790000px;}
.y13b{bottom:495.870000px;}
.y175{bottom:501.270000px;}
.ya0{bottom:503.070000px;}
.y103{bottom:504.870000px;}
.y62{bottom:505.950000px;}
.yd1{bottom:509.190000px;}
.y20e{bottom:511.350000px;}
.y1da{bottom:513.150000px;}
.y13a{bottom:513.870000px;}
.y2d{bottom:516.750000px;}
.y174{bottom:519.270000px;}
.y9f{bottom:521.070000px;}
.y102{bottom:522.150000px;}
.y19b{bottom:522.870000px;}
.y61{bottom:523.950000px;}
.yd0{bottom:527.550000px;}
.y20d{bottom:528.630000px;}
.y1d9{bottom:531.150000px;}
.y139{bottom:531.870000px;}
.y173{bottom:537.300000px;}
.y9e{bottom:539.100000px;}
.y19a{bottom:540.900000px;}
.y60{bottom:541.980000px;}
.ycf{bottom:545.580000px;}
.y20c{bottom:545.940000px;}
.y101{bottom:549.180000px;}
.y138{bottom:550.260000px;}
.y172{bottom:555.660000px;}
.y2c{bottom:557.100000px;}
.y9d{bottom:557.460000px;}
.y199{bottom:559.260000px;}
.y5f{bottom:560.340000px;}
.y20b{bottom:563.220000px;}
.yce{bottom:563.580000px;}
.y100{bottom:567.540000px;}
.y137{bottom:568.260000px;}
.y171{bottom:573.660000px;}
.y9c{bottom:575.460000px;}
.y198{bottom:577.260000px;}
.y5e{bottom:578.340000px;}
.y20a{bottom:580.140000px;}
.ycd{bottom:581.580000px;}
.yff{bottom:585.540000px;}
.y136{bottom:586.260000px;}
.y170{bottom:591.660000px;}
.y2b{bottom:592.020000px;}
.y9b{bottom:593.460000px;}
.y197{bottom:595.260000px;}
.y5d{bottom:596.340000px;}
.y209{bottom:597.420000px;}
.ycc{bottom:599.940000px;}
.yfe{bottom:603.540000px;}
.y135{bottom:604.620000px;}
.y2a{bottom:607.500000px;}
.y1d8{bottom:609.660000px;}
.y9a{bottom:611.460000px;}
.y16f{bottom:613.620000px;}
.y5c{bottom:614.700000px;}
.ycb{bottom:617.940000px;}
.yfd{bottom:621.540000px;}
.y134{bottom:622.620000px;}
.y1d7{bottom:628.020000px;}
.y29{bottom:629.100000px;}
.y99{bottom:629.820000px;}
.y196{bottom:631.620000px;}
.y208{bottom:631.980000px;}
.y5b{bottom:632.700000px;}
.yca{bottom:635.940000px;}
.yfc{bottom:639.900000px;}
.y16e{bottom:640.620000px;}
.y133{bottom:644.220000px;}
.y28{bottom:644.580000px;}
.y1d6{bottom:646.020000px;}
.y98{bottom:647.820000px;}
.y207{bottom:649.260000px;}
.y195{bottom:649.620000px;}
.y5a{bottom:650.700000px;}
.yc9{bottom:654.300000px;}
.yfb{bottom:657.900000px;}
.y16d{bottom:658.620000px;}
.y27{bottom:660.060000px;}
.y97{bottom:665.850000px;}
.y206{bottom:666.570000px;}
.y1d5{bottom:667.650000px;}
.y59{bottom:669.090000px;}
.y132{bottom:671.610000px;}
.yc8{bottom:672.330000px;}
.y26{bottom:675.570000px;}
.yfa{bottom:675.930000px;}
.y16c{bottom:676.650000px;}
.y205{bottom:683.850000px;}
.y96{bottom:684.210000px;}
.y1d4{bottom:684.930000px;}
.y58{bottom:687.090000px;}
.y131{bottom:689.610000px;}
.yc7{bottom:690.330000px;}
.y25{bottom:691.050000px;}
.y1b1{bottom:693.210000px;}
.yf9{bottom:694.290000px;}
.y16b{bottom:695.010000px;}
.y194{bottom:698.610000px;}
.y204{bottom:701.130000px;}
.y95{bottom:702.210000px;}
.y57{bottom:705.090000px;}
.y24{bottom:706.530000px;}
.y130{bottom:707.610000px;}
.yc6{bottom:708.690000px;}
.yf8{bottom:712.290000px;}
.y16a{bottom:713.010000px;}
.y193{bottom:716.610000px;}
.y203{bottom:718.410000px;}
.y94{bottom:720.210000px;}
.y23{bottom:722.010000px;}
.y56{bottom:723.450000px;}
.y12f{bottom:725.610000px;}
.yc5{bottom:726.690000px;}
.yf7{bottom:730.290000px;}
.y169{bottom:731.010000px;}
.y192{bottom:734.610000px;}
.y202{bottom:735.690000px;}
.y22{bottom:737.850000px;}
.y93{bottom:738.570000px;}
.y55{bottom:741.450000px;}
.y12e{bottom:743.970000px;}
.yc4{bottom:744.690000px;}
.y1d3{bottom:748.290000px;}
.yf6{bottom:748.650000px;}
.y168{bottom:749.370000px;}
.y191{bottom:752.970000px;}
.y21{bottom:753.330000px;}
.y92{bottom:756.570000px;}
.y54{bottom:759.450000px;}
.y12d{bottom:761.970000px;}
.yc3{bottom:763.050000px;}
.yf5{bottom:766.650000px;}
.y167{bottom:767.370000px;}
.y20{bottom:768.810000px;}
.y201{bottom:770.250000px;}
.y190{bottom:770.970000px;}
.y91{bottom:774.570000px;}
.y53{bottom:777.810000px;}
.y12c{bottom:779.970000px;}
.yc2{bottom:781.050000px;}
.y1f{bottom:784.290000px;}
.yf4{bottom:784.650000px;}
.y166{bottom:785.370000px;}
.y200{bottom:787.170000px;}
.y18f{bottom:788.970000px;}
.y90{bottom:792.930000px;}
.y52{bottom:795.810000px;}
.y12b{bottom:798.330000px;}
.yc1{bottom:799.050000px;}
.y1e{bottom:799.815000px;}
.y1ff{bottom:801.255000px;}
.y1d2{bottom:802.695000px;}
.yf3{bottom:803.055000px;}
.y165{bottom:803.775000px;}
.y18e{bottom:807.375000px;}
.y8f{bottom:810.975000px;}
.y51{bottom:813.855000px;}
.y1d{bottom:815.295000px;}
.y12a{bottom:816.375000px;}
.yc0{bottom:817.095000px;}
.yf2{bottom:821.055000px;}
.y1fe{bottom:821.415000px;}
.y164{bottom:821.775000px;}
.y18d{bottom:825.375000px;}
.y8e{bottom:828.975000px;}
.y1c{bottom:830.775000px;}
.y50{bottom:831.855000px;}
.y129{bottom:834.375000px;}
.y1fd{bottom:835.095000px;}
.ybf{bottom:835.455000px;}
.yf1{bottom:839.055000px;}
.y163{bottom:839.775000px;}
.y18c{bottom:843.375000px;}
.y1b{bottom:846.255000px;}
.y8d{bottom:846.975000px;}
.y1fc{bottom:848.775000px;}
.y4f{bottom:850.215000px;}
.y128{bottom:852.735000px;}
.ybe{bottom:853.455000px;}
.yf0{bottom:857.055000px;}
.y162{bottom:858.135000px;}
.y1a{bottom:861.735000px;}
.y1fb{bottom:862.815000px;}
.y8c{bottom:865.335000px;}
.y4e{bottom:868.215000px;}
.y127{bottom:870.735000px;}
.ybd{bottom:871.455000px;}
.y1d1{bottom:875.055000px;}
.yef{bottom:875.415000px;}
.y161{bottom:876.135000px;}
.y1fa{bottom:876.495000px;}
.y19{bottom:877.575000px;}
.y18b{bottom:879.735000px;}
.y8b{bottom:883.335000px;}
.y4d{bottom:886.215000px;}
.y126{bottom:888.735000px;}
.ybc{bottom:889.815000px;}
.y1f9{bottom:890.175000px;}
.y18{bottom:893.055000px;}
.yee{bottom:893.415000px;}
.y160{bottom:894.135000px;}
.y18a{bottom:897.735000px;}
.y8a{bottom:901.335000px;}
.y1f8{bottom:904.215000px;}
.y4c{bottom:904.575000px;}
.y125{bottom:907.095000px;}
.ybb{bottom:907.815000px;}
.y17{bottom:908.535000px;}
.yed{bottom:911.415000px;}
.y15f{bottom:912.135000px;}
.y189{bottom:916.095000px;}
.y1f7{bottom:917.895000px;}
.y89{bottom:919.695000px;}
.y4b{bottom:922.575000px;}
.y16{bottom:924.015000px;}
.y124{bottom:925.095000px;}
.yba{bottom:925.815000px;}
.y1d0{bottom:929.415000px;}
.yec{bottom:929.775000px;}
.y15e{bottom:930.495000px;}
.y1f6{bottom:931.575000px;}
.y188{bottom:934.125000px;}
.y88{bottom:937.725000px;}
.y15{bottom:939.525000px;}
.y4a{bottom:940.605000px;}
.y123{bottom:943.125000px;}
.yb9{bottom:947.805000px;}
.y15d{bottom:948.525000px;}
.y187{bottom:952.125000px;}
.y14{bottom:955.005000px;}
.y87{bottom:955.725000px;}
.y49{bottom:958.965000px;}
.y122{bottom:961.485000px;}
.yb8{bottom:965.085000px;}
.yeb{bottom:965.805000px;}
.y15c{bottom:966.525000px;}
.y13{bottom:970.485000px;}
.y86{bottom:974.085000px;}
.y48{bottom:976.965000px;}
.y121{bottom:979.485000px;}
.y1cf{bottom:983.805000px;}
.yea{bottom:984.165000px;}
.y15b{bottom:984.885000px;}
.y12{bottom:985.965000px;}
.y186{bottom:988.485000px;}
.y1f5{bottom:990.285000px;}
.y85{bottom:992.085000px;}
.y47{bottom:994.965000px;}
.y120{bottom:997.485000px;}
.y11{bottom:1001.805000px;}
.y1ce{bottom:1002.165000px;}
.y15a{bottom:1002.885000px;}
.y1f4{bottom:1005.045000px;}
.y185{bottom:1006.485000px;}
.y84{bottom:1010.085000px;}
.ye9{bottom:1010.445000px;}
.y46{bottom:1013.325000px;}
.y11f{bottom:1015.485000px;}
.y10{bottom:1017.285000px;}
.y1f3{bottom:1019.445000px;}
.y1cd{bottom:1020.165000px;}
.y159{bottom:1020.885000px;}
.y184{bottom:1024.485000px;}
.y83{bottom:1028.445000px;}
.y45{bottom:1031.325000px;}
.yf{bottom:1032.765000px;}
.y11e{bottom:1033.845000px;}
.y1cc{bottom:1038.165000px;}
.y158{bottom:1039.245000px;}
.y183{bottom:1042.845000px;}
.y82{bottom:1046.445000px;}
.y1f2{bottom:1048.245000px;}
.y11d{bottom:1051.845000px;}
.y1cb{bottom:1056.525000px;}
.y157{bottom:1057.245000px;}
.y182{bottom:1060.845000px;}
.y1f1{bottom:1063.005000px;}
.y81{bottom:1064.445000px;}
.ye{bottom:1067.010000px;}
.y11c{bottom:1069.890000px;}
.y1ca{bottom:1074.570000px;}
.y156{bottom:1075.290000px;}
.y1f0{bottom:1077.450000px;}
.y181{bottom:1078.890000px;}
.y80{bottom:1082.490000px;}
.y11b{bottom:1091.850000px;}
.y1c9{bottom:1092.570000px;}
.y155{bottom:1093.650000px;}
.y180{bottom:1097.250000px;}
.y7f{bottom:1100.850000px;}
.y1ef{bottom:1106.250000px;}
.yd{bottom:1110.210000px;}
.y1c8{bottom:1110.570000px;}
.y154{bottom:1111.650000px;}
.y17f{bottom:1115.250000px;}
.y7e{bottom:1118.850000px;}
.y1ee{bottom:1121.010000px;}
.y1c7{bottom:1128.930000px;}
.y153{bottom:1129.650000px;}
.y17e{bottom:1133.250000px;}
.y1ed{bottom:1135.410000px;}
.y7d{bottom:1136.850000px;}
.y1c6{bottom:1146.930000px;}
.y1ec{bottom:1149.810000px;}
.y17d{bottom:1151.610000px;}
.yc{bottom:1153.770000px;}
.y7c{bottom:1155.210000px;}
.y152{bottom:1155.930000px;}
.y7b{bottom:1173.210000px;}
.y7a{bottom:1213.560000px;}
.y2{bottom:1217.520000px;}
.y79{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.hc{height:33.180469px;}
.h10{height:33.528516px;}
.hf{height:34.595859px;}
.h5{height:36.150469px;}
.hb{height:38.608594px;}
.h9{height:41.227031px;}
.h6{height:41.400000px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h4{height:43.560000px;}
.hd{height:44.031094px;}
.he{height:44.798906px;}
.h8{height:46.736719px;}
.ha{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:186.555000px;}
.w2{width:267.945000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x4{left:60.516000px;}
.x11{left:64.475987px;}
.x1e{left:69.155987px;}
.xb{left:70.236000px;}
.x19{left:72.755987px;}
.x1c{left:76.715987px;}
.x1d{left:77.795987px;}
.xa{left:81.036000px;}
.x1b{left:84.995987px;}
.x12{left:87.515987px;}
.x21{left:97.235987px;}
.x1a{left:123.515987px;}
.x8{left:124.596000px;}
.x10{left:130.715987px;}
.x7{left:132.876000px;}
.x20{left:147.671987px;}
.xc{left:177.915000px;}
.x1f{left:181.874987px;}
.x13{left:216.074987px;}
.x9{left:390.750000px;}
.x2{left:436.140000px;}
.x3{left:439.020000px;}
.xf{left:446.579987px;}
.x14{left:448.379987px;}
.xe{left:457.380000px;}
.x22{left:462.419987px;}
.x18{left:463.859987px;}
.xd{left:468.180000px;}
.x16{left:471.419987px;}
.x1{left:472.860000px;}
.x15{left:475.739987px;}
.x6{left:484.740000px;}
.x23{left:489.419987px;}
.x17{left:510.689987px;}
.x25{left:544.889987px;}
.x24{left:565.409987px;}
.x26{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.864000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.432533pt;}
.lsf{letter-spacing:-0.414933pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.017920pt;}
.lsd{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.013867pt;}
.ls2{letter-spacing:0.014080pt;}
.ls0{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.174080pt;}
.lse{letter-spacing:0.222933pt;}
.ls17{letter-spacing:0.376320pt;}
.ls13{letter-spacing:0.414933pt;}
.ls19{letter-spacing:0.432533pt;}
.ls23{letter-spacing:0.445333pt;}
.ls18{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.462080pt;}
.ls10{letter-spacing:0.591360pt;}
.lsa{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.056000pt;}
.ls12{letter-spacing:8.094720pt;}
.ls11{letter-spacing:11.934720pt;}
.ls1b{letter-spacing:22.174720pt;}
.ls16{letter-spacing:23.454720pt;}
.ls21{letter-spacing:52.257280pt;}
.ls20{letter-spacing:56.734720pt;}
.ls1e{letter-spacing:81.054720pt;}
.ls1c{letter-spacing:81.161387pt;}
.ls1f{letter-spacing:82.334720pt;}
.ls1d{letter-spacing:82.441387pt;}
.ws10{word-spacing:-53.760000pt;}
.wsf{word-spacing:-13.872533pt;}
.wsb{word-spacing:-13.854933pt;}
.wse{word-spacing:-13.816320pt;}
.ws4{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.422080pt;}
.wsd{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.ws1{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.200000pt;}
.ws11{word-spacing:-11.005333pt;}
.ws7{word-spacing:-10.782933pt;}
.ws5{word-spacing:-10.573867pt;}
.ws2{word-spacing:-10.560000pt;}
.ws6{word-spacing:-10.546133pt;}
.wsa{word-spacing:0.000000pt;}
.ws9{word-spacing:11.070080pt;}
.ws3{word-spacing:26.464960pt;}
._1d{margin-left:-3.603210pt;}
._1c{margin-left:-2.305572pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.281492pt;}
._2{width:2.184854pt;}
._4{width:3.284265pt;}
._3{width:4.290879pt;}
._f{width:5.693420pt;}
._6{width:7.205123pt;}
._5{width:8.220306pt;}
._7{width:9.703066pt;}
._10{width:11.172803pt;}
._14{width:12.149330pt;}
._a{width:13.585365pt;}
._22{width:15.052800pt;}
._9{width:15.984727pt;}
._8{width:17.215785pt;}
._12{width:18.729321pt;}
._27{width:19.655947pt;}
._d{width:20.943086pt;}
._e{width:22.672536pt;}
._17{width:23.761597pt;}
._b{width:24.760105pt;}
._c{width:26.363172pt;}
._11{width:27.642077pt;}
._13{width:28.908384pt;}
._1b{width:30.051732pt;}
._15{width:31.211090pt;}
._16{width:32.145493pt;}
._1a{width:33.554773pt;}
._18{width:34.785280pt;}
._19{width:35.753276pt;}
._28{width:36.828348pt;}
._29{width:38.217037pt;}
._26{width:39.944614pt;}
._25{width:41.127999pt;}
._24{width:42.042745pt;}
._23{width:43.050559pt;}
._36{width:44.177712pt;}
._2f{width:45.373332pt;}
._30{width:46.986240pt;}
._1e{width:48.350593pt;}
._2e{width:49.996800pt;}
._2c{width:50.910720pt;}
._2d{width:51.985705pt;}
._1f{width:55.803948pt;}
._20{width:56.861655pt;}
._3d{width:58.093435pt;}
._35{width:59.150029pt;}
._34{width:60.372372pt;}
._3c{width:61.410050pt;}
._21{width:66.331987pt;}
._31{width:67.361065pt;}
._33{width:68.382505pt;}
._32{width:69.834132pt;}
._37{width:79.511040pt;}
._3f{width:89.450532pt;}
._3e{width:90.605972pt;}
._39{width:92.789652pt;}
._38{width:94.258104pt;}
._2a{width:104.617068pt;}
._3a{width:112.155945pt;}
._41{width:154.119468pt;}
._40{width:155.344428pt;}
._3b{width:196.062720pt;}
._2b{width:282.322427pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.240000pt;}
.y7{bottom:4.160000pt;}
.y4{bottom:9.632000pt;}
.y8{bottom:12.192000pt;}
.ya{bottom:14.720000pt;}
.y6{bottom:16.640000pt;}
.y3{bottom:16.992000pt;}
.y9{bottom:26.880000pt;}
.y5{bottom:28.800000pt;}
.ye8{bottom:71.072000pt;}
.y11a{bottom:75.232000pt;}
.yb7{bottom:76.832000pt;}
.y1eb{bottom:78.432000pt;}
.y44{bottom:81.632000pt;}
.y1c5{bottom:82.272000pt;}
.y1b0{bottom:83.232000pt;}
.y78{bottom:84.832000pt;}
.y151{bottom:86.432000pt;}
.ye7{bottom:87.072000pt;}
.y119{bottom:91.232000pt;}
.yb6{bottom:92.832000pt;}
.y43{bottom:93.792000pt;}
.y1ea{bottom:94.752000pt;}
.y1c4{bottom:98.272000pt;}
.y1af{bottom:99.232000pt;}
.y77{bottom:101.152000pt;}
.y150{bottom:102.432000pt;}
.ye6{bottom:103.392000pt;}
.y42{bottom:106.272000pt;}
.y118{bottom:107.232000pt;}
.yb5{bottom:108.832000pt;}
.y1e9{bottom:110.752000pt;}
.y1c3{bottom:114.592000pt;}
.y1ae{bottom:115.232000pt;}
.y76{bottom:117.184000pt;}
.y14f{bottom:118.784000pt;}
.ye5{bottom:119.424000pt;}
.y17c{bottom:123.264000pt;}
.y117{bottom:123.584000pt;}
.yb4{bottom:124.864000pt;}
.y1e8{bottom:126.784000pt;}
.y41{bottom:130.624000pt;}
.y1ad{bottom:131.584000pt;}
.y75{bottom:133.184000pt;}
.y14e{bottom:134.786667pt;}
.ye4{bottom:135.426667pt;}
.y116{bottom:139.586667pt;}
.yb3{bottom:141.186667pt;}
.y1e7{bottom:142.786667pt;}
.y40{bottom:143.106667pt;}
.y1c2{bottom:146.626667pt;}
.y1ac{bottom:147.586667pt;}
.y74{bottom:149.506667pt;}
.y14d{bottom:150.786667pt;}
.ye3{bottom:151.746667pt;}
.y115{bottom:155.586667pt;}
.y3f{bottom:155.906667pt;}
.yb2{bottom:157.186667pt;}
.y1e6{bottom:159.106667pt;}
.y1c1{bottom:162.946667pt;}
.y73{bottom:165.506667pt;}
.y14c{bottom:166.786667pt;}
.ye2{bottom:167.746667pt;}
.y3e{bottom:170.946667pt;}
.y17b{bottom:171.586667pt;}
.y114{bottom:171.906667pt;}
.yb1{bottom:173.186667pt;}
.y1e5{bottom:175.106667pt;}
.y1c0{bottom:178.946667pt;}
.y72{bottom:181.506667pt;}
.y14b{bottom:183.106667pt;}
.ye1{bottom:183.746667pt;}
.y3d{bottom:184.706667pt;}
.y113{bottom:187.906667pt;}
.yb0{bottom:189.506667pt;}
.y1ab{bottom:191.106667pt;}
.y1bf{bottom:194.946667pt;}
.y71{bottom:197.826667pt;}
.y3c{bottom:198.466667pt;}
.y14a{bottom:199.106667pt;}
.ye0{bottom:199.746667pt;}
.y112{bottom:203.906667pt;}
.yaf{bottom:205.506667pt;}
.y1aa{bottom:207.106667pt;}
.y1e4{bottom:207.426667pt;}
.y1be{bottom:211.266667pt;}
.y3b{bottom:212.226667pt;}
.y70{bottom:213.826667pt;}
.y149{bottom:215.106667pt;}
.ydf{bottom:216.066667pt;}
.y17a{bottom:219.906667pt;}
.y111{bottom:220.226667pt;}
.yae{bottom:221.506667pt;}
.y1a9{bottom:223.106667pt;}
.y1e3{bottom:223.426667pt;}
.y3a{bottom:225.986667pt;}
.y1bd{bottom:227.266667pt;}
.y6f{bottom:229.826667pt;}
.y148{bottom:231.426667pt;}
.yde{bottom:232.066667pt;}
.y110{bottom:236.253333pt;}
.yad{bottom:237.853333pt;}
.y1a8{bottom:239.453333pt;}
.y39{bottom:239.773333pt;}
.y1bc{bottom:243.293333pt;}
.y6e{bottom:245.853333pt;}
.y147{bottom:247.453333pt;}
.ydd{bottom:248.093333pt;}
.y10f{bottom:252.253333pt;}
.yac{bottom:253.853333pt;}
.y1a7{bottom:255.453333pt;}
.y1e2{bottom:255.773333pt;}
.y1bb{bottom:259.293333pt;}
.y6d{bottom:262.173333pt;}
.y146{bottom:263.453333pt;}
.ydc{bottom:264.413333pt;}
.y179{bottom:268.253333pt;}
.y10e{bottom:268.573333pt;}
.yab{bottom:269.853333pt;}
.y1a6{bottom:271.453333pt;}
.y1e1{bottom:271.773333pt;}
.y1ba{bottom:275.613333pt;}
.y6c{bottom:278.173333pt;}
.y38{bottom:278.493333pt;}
.y145{bottom:279.773333pt;}
.ydb{bottom:280.413333pt;}
.y10d{bottom:284.573333pt;}
.yaa{bottom:286.173333pt;}
.y1a5{bottom:287.773333pt;}
.y1b9{bottom:291.613333pt;}
.y6b{bottom:294.173333pt;}
.y37{bottom:294.493333pt;}
.y144{bottom:295.773333pt;}
.yda{bottom:296.413333pt;}
.y10c{bottom:300.573333pt;}
.ya9{bottom:302.173333pt;}
.y1a4{bottom:303.773333pt;}
.y1e0{bottom:304.093333pt;}
.y1b8{bottom:307.613333pt;}
.y6a{bottom:310.493333pt;}
.y36{bottom:310.813333pt;}
.y143{bottom:311.773333pt;}
.yd9{bottom:312.733333pt;}
.y10b{bottom:316.573333pt;}
.ya8{bottom:318.173333pt;}
.y1a3{bottom:319.773333pt;}
.y1df{bottom:320.093333pt;}
.y1b7{bottom:323.933333pt;}
.y69{bottom:326.493333pt;}
.y35{bottom:326.813333pt;}
.y142{bottom:328.093333pt;}
.yd8{bottom:328.733333pt;}
.y178{bottom:332.573333pt;}
.y10a{bottom:332.893333pt;}
.ya7{bottom:334.173333pt;}
.y1a2{bottom:336.093333pt;}
.y1b6{bottom:339.933333pt;}
.y68{bottom:342.493333pt;}
.y34{bottom:342.813333pt;}
.y141{bottom:344.093333pt;}
.yd7{bottom:344.733333pt;}
.y109{bottom:348.893333pt;}
.ya6{bottom:350.493333pt;}
.y1a1{bottom:352.093333pt;}
.y1b5{bottom:355.973333pt;}
.y67{bottom:358.853333pt;}
.y33{bottom:359.173333pt;}
.y140{bottom:360.133333pt;}
.yd6{bottom:361.093333pt;}
.y108{bottom:364.933333pt;}
.ya5{bottom:366.533333pt;}
.y1a0{bottom:368.133333pt;}
.y1de{bottom:368.453333pt;}
.y1b4{bottom:372.293333pt;}
.y66{bottom:374.853333pt;}
.y32{bottom:375.173333pt;}
.y13f{bottom:376.133333pt;}
.yd5{bottom:377.093333pt;}
.y177{bottom:380.933333pt;}
.y107{bottom:381.253333pt;}
.ya4{bottom:382.533333pt;}
.y19f{bottom:384.133333pt;}
.y1b3{bottom:388.293333pt;}
.y65{bottom:390.853333pt;}
.y31{bottom:391.173333pt;}
.y1dd{bottom:391.813333pt;}
.y13e{bottom:392.453333pt;}
.yd4{bottom:396.293333pt;}
.y106{bottom:397.253333pt;}
.ya3{bottom:398.853333pt;}
.y19e{bottom:400.453333pt;}
.y1b2{bottom:404.293333pt;}
.y30{bottom:407.173333pt;}
.y13d{bottom:408.453333pt;}
.y64{bottom:410.373333pt;}
.y105{bottom:413.253333pt;}
.ya2{bottom:414.853333pt;}
.y19d{bottom:416.453333pt;}
.yd3{bottom:420.613333pt;}
.y2f{bottom:423.493333pt;}
.y1dc{bottom:423.813333pt;}
.y13c{bottom:424.453333pt;}
.y63{bottom:425.733333pt;}
.y176{bottom:429.253333pt;}
.y104{bottom:429.573333pt;}
.ya1{bottom:430.853333pt;}
.y19c{bottom:432.453333pt;}
.yd2{bottom:436.613333pt;}
.y2e{bottom:439.493333pt;}
.y1db{bottom:439.813333pt;}
.y13b{bottom:440.773333pt;}
.y175{bottom:445.573333pt;}
.ya0{bottom:447.173333pt;}
.y103{bottom:448.773333pt;}
.y62{bottom:449.733333pt;}
.yd1{bottom:452.613333pt;}
.y20e{bottom:454.533333pt;}
.y1da{bottom:456.133333pt;}
.y13a{bottom:456.773333pt;}
.y2d{bottom:459.333333pt;}
.y174{bottom:461.573333pt;}
.y9f{bottom:463.173333pt;}
.y102{bottom:464.133333pt;}
.y19b{bottom:464.773333pt;}
.y61{bottom:465.733333pt;}
.yd0{bottom:468.933333pt;}
.y20d{bottom:469.893333pt;}
.y1d9{bottom:472.133333pt;}
.y139{bottom:472.773333pt;}
.y173{bottom:477.600000pt;}
.y9e{bottom:479.200000pt;}
.y19a{bottom:480.800000pt;}
.y60{bottom:481.760000pt;}
.ycf{bottom:484.960000pt;}
.y20c{bottom:485.280000pt;}
.y101{bottom:488.160000pt;}
.y138{bottom:489.120000pt;}
.y172{bottom:493.920000pt;}
.y2c{bottom:495.200000pt;}
.y9d{bottom:495.520000pt;}
.y199{bottom:497.120000pt;}
.y5f{bottom:498.080000pt;}
.y20b{bottom:500.640000pt;}
.yce{bottom:500.960000pt;}
.y100{bottom:504.480000pt;}
.y137{bottom:505.120000pt;}
.y171{bottom:509.920000pt;}
.y9c{bottom:511.520000pt;}
.y198{bottom:513.120000pt;}
.y5e{bottom:514.080000pt;}
.y20a{bottom:515.680000pt;}
.ycd{bottom:516.960000pt;}
.yff{bottom:520.480000pt;}
.y136{bottom:521.120000pt;}
.y170{bottom:525.920000pt;}
.y2b{bottom:526.240000pt;}
.y9b{bottom:527.520000pt;}
.y197{bottom:529.120000pt;}
.y5d{bottom:530.080000pt;}
.y209{bottom:531.040000pt;}
.ycc{bottom:533.280000pt;}
.yfe{bottom:536.480000pt;}
.y135{bottom:537.440000pt;}
.y2a{bottom:540.000000pt;}
.y1d8{bottom:541.920000pt;}
.y9a{bottom:543.520000pt;}
.y16f{bottom:545.440000pt;}
.y5c{bottom:546.400000pt;}
.ycb{bottom:549.280000pt;}
.yfd{bottom:552.480000pt;}
.y134{bottom:553.440000pt;}
.y1d7{bottom:558.240000pt;}
.y29{bottom:559.200000pt;}
.y99{bottom:559.840000pt;}
.y196{bottom:561.440000pt;}
.y208{bottom:561.760000pt;}
.y5b{bottom:562.400000pt;}
.yca{bottom:565.280000pt;}
.yfc{bottom:568.800000pt;}
.y16e{bottom:569.440000pt;}
.y133{bottom:572.640000pt;}
.y28{bottom:572.960000pt;}
.y1d6{bottom:574.240000pt;}
.y98{bottom:575.840000pt;}
.y207{bottom:577.120000pt;}
.y195{bottom:577.440000pt;}
.y5a{bottom:578.400000pt;}
.yc9{bottom:581.600000pt;}
.yfb{bottom:584.800000pt;}
.y16d{bottom:585.440000pt;}
.y27{bottom:586.720000pt;}
.y97{bottom:591.866667pt;}
.y206{bottom:592.506667pt;}
.y1d5{bottom:593.466667pt;}
.y59{bottom:594.746667pt;}
.y132{bottom:596.986667pt;}
.yc8{bottom:597.626667pt;}
.y26{bottom:600.506667pt;}
.yfa{bottom:600.826667pt;}
.y16c{bottom:601.466667pt;}
.y205{bottom:607.866667pt;}
.y96{bottom:608.186667pt;}
.y1d4{bottom:608.826667pt;}
.y58{bottom:610.746667pt;}
.y131{bottom:612.986667pt;}
.yc7{bottom:613.626667pt;}
.y25{bottom:614.266667pt;}
.y1b1{bottom:616.186667pt;}
.yf9{bottom:617.146667pt;}
.y16b{bottom:617.786667pt;}
.y194{bottom:620.986667pt;}
.y204{bottom:623.226667pt;}
.y95{bottom:624.186667pt;}
.y57{bottom:626.746667pt;}
.y24{bottom:628.026667pt;}
.y130{bottom:628.986667pt;}
.yc6{bottom:629.946667pt;}
.yf8{bottom:633.146667pt;}
.y16a{bottom:633.786667pt;}
.y193{bottom:636.986667pt;}
.y203{bottom:638.586667pt;}
.y94{bottom:640.186667pt;}
.y23{bottom:641.786667pt;}
.y56{bottom:643.066667pt;}
.y12f{bottom:644.986667pt;}
.yc5{bottom:645.946667pt;}
.yf7{bottom:649.146667pt;}
.y169{bottom:649.786667pt;}
.y192{bottom:652.986667pt;}
.y202{bottom:653.946667pt;}
.y22{bottom:655.866667pt;}
.y93{bottom:656.506667pt;}
.y55{bottom:659.066667pt;}
.y12e{bottom:661.306667pt;}
.yc4{bottom:661.946667pt;}
.y1d3{bottom:665.146667pt;}
.yf6{bottom:665.466667pt;}
.y168{bottom:666.106667pt;}
.y191{bottom:669.306667pt;}
.y21{bottom:669.626667pt;}
.y92{bottom:672.506667pt;}
.y54{bottom:675.066667pt;}
.y12d{bottom:677.306667pt;}
.yc3{bottom:678.266667pt;}
.yf5{bottom:681.466667pt;}
.y167{bottom:682.106667pt;}
.y20{bottom:683.386667pt;}
.y201{bottom:684.666667pt;}
.y190{bottom:685.306667pt;}
.y91{bottom:688.506667pt;}
.y53{bottom:691.386667pt;}
.y12c{bottom:693.306667pt;}
.yc2{bottom:694.266667pt;}
.y1f{bottom:697.146667pt;}
.yf4{bottom:697.466667pt;}
.y166{bottom:698.106667pt;}
.y200{bottom:699.706667pt;}
.y18f{bottom:701.306667pt;}
.y90{bottom:704.826667pt;}
.y52{bottom:707.386667pt;}
.y12b{bottom:709.626667pt;}
.yc1{bottom:710.266667pt;}
.y1e{bottom:710.946667pt;}
.y1ff{bottom:712.226667pt;}
.y1d2{bottom:713.506667pt;}
.yf3{bottom:713.826667pt;}
.y165{bottom:714.466667pt;}
.y18e{bottom:717.666667pt;}
.y8f{bottom:720.866667pt;}
.y51{bottom:723.426667pt;}
.y1d{bottom:724.706667pt;}
.y12a{bottom:725.666667pt;}
.yc0{bottom:726.306667pt;}
.yf2{bottom:729.826667pt;}
.y1fe{bottom:730.146667pt;}
.y164{bottom:730.466667pt;}
.y18d{bottom:733.666667pt;}
.y8e{bottom:736.866667pt;}
.y1c{bottom:738.466667pt;}
.y50{bottom:739.426667pt;}
.y129{bottom:741.666667pt;}
.y1fd{bottom:742.306667pt;}
.ybf{bottom:742.626667pt;}
.yf1{bottom:745.826667pt;}
.y163{bottom:746.466667pt;}
.y18c{bottom:749.666667pt;}
.y1b{bottom:752.226667pt;}
.y8d{bottom:752.866667pt;}
.y1fc{bottom:754.466667pt;}
.y4f{bottom:755.746667pt;}
.y128{bottom:757.986667pt;}
.ybe{bottom:758.626667pt;}
.yf0{bottom:761.826667pt;}
.y162{bottom:762.786667pt;}
.y1a{bottom:765.986667pt;}
.y1fb{bottom:766.946667pt;}
.y8c{bottom:769.186667pt;}
.y4e{bottom:771.746667pt;}
.y127{bottom:773.986667pt;}
.ybd{bottom:774.626667pt;}
.y1d1{bottom:777.826667pt;}
.yef{bottom:778.146667pt;}
.y161{bottom:778.786667pt;}
.y1fa{bottom:779.106667pt;}
.y19{bottom:780.066667pt;}
.y18b{bottom:781.986667pt;}
.y8b{bottom:785.186667pt;}
.y4d{bottom:787.746667pt;}
.y126{bottom:789.986667pt;}
.ybc{bottom:790.946667pt;}
.y1f9{bottom:791.266667pt;}
.y18{bottom:793.826667pt;}
.yee{bottom:794.146667pt;}
.y160{bottom:794.786667pt;}
.y18a{bottom:797.986667pt;}
.y8a{bottom:801.186667pt;}
.y1f8{bottom:803.746667pt;}
.y4c{bottom:804.066667pt;}
.y125{bottom:806.306667pt;}
.ybb{bottom:806.946667pt;}
.y17{bottom:807.586667pt;}
.yed{bottom:810.146667pt;}
.y15f{bottom:810.786667pt;}
.y189{bottom:814.306667pt;}
.y1f7{bottom:815.906667pt;}
.y89{bottom:817.506667pt;}
.y4b{bottom:820.066667pt;}
.y16{bottom:821.346667pt;}
.y124{bottom:822.306667pt;}
.yba{bottom:822.946667pt;}
.y1d0{bottom:826.146667pt;}
.yec{bottom:826.466667pt;}
.y15e{bottom:827.106667pt;}
.y1f6{bottom:828.066667pt;}
.y188{bottom:830.333333pt;}
.y88{bottom:833.533333pt;}
.y15{bottom:835.133333pt;}
.y4a{bottom:836.093333pt;}
.y123{bottom:838.333333pt;}
.yb9{bottom:842.493333pt;}
.y15d{bottom:843.133333pt;}
.y187{bottom:846.333333pt;}
.y14{bottom:848.893333pt;}
.y87{bottom:849.533333pt;}
.y49{bottom:852.413333pt;}
.y122{bottom:854.653333pt;}
.yb8{bottom:857.853333pt;}
.yeb{bottom:858.493333pt;}
.y15c{bottom:859.133333pt;}
.y13{bottom:862.653333pt;}
.y86{bottom:865.853333pt;}
.y48{bottom:868.413333pt;}
.y121{bottom:870.653333pt;}
.y1cf{bottom:874.493333pt;}
.yea{bottom:874.813333pt;}
.y15b{bottom:875.453333pt;}
.y12{bottom:876.413333pt;}
.y186{bottom:878.653333pt;}
.y1f5{bottom:880.253333pt;}
.y85{bottom:881.853333pt;}
.y47{bottom:884.413333pt;}
.y120{bottom:886.653333pt;}
.y11{bottom:890.493333pt;}
.y1ce{bottom:890.813333pt;}
.y15a{bottom:891.453333pt;}
.y1f4{bottom:893.373333pt;}
.y185{bottom:894.653333pt;}
.y84{bottom:897.853333pt;}
.ye9{bottom:898.173333pt;}
.y46{bottom:900.733333pt;}
.y11f{bottom:902.653333pt;}
.y10{bottom:904.253333pt;}
.y1f3{bottom:906.173333pt;}
.y1cd{bottom:906.813333pt;}
.y159{bottom:907.453333pt;}
.y184{bottom:910.653333pt;}
.y83{bottom:914.173333pt;}
.y45{bottom:916.733333pt;}
.yf{bottom:918.013333pt;}
.y11e{bottom:918.973333pt;}
.y1cc{bottom:922.813333pt;}
.y158{bottom:923.773333pt;}
.y183{bottom:926.973333pt;}
.y82{bottom:930.173333pt;}
.y1f2{bottom:931.773333pt;}
.y11d{bottom:934.973333pt;}
.y1cb{bottom:939.133333pt;}
.y157{bottom:939.773333pt;}
.y182{bottom:942.973333pt;}
.y1f1{bottom:944.893333pt;}
.y81{bottom:946.173333pt;}
.ye{bottom:948.453333pt;}
.y11c{bottom:951.013333pt;}
.y1ca{bottom:955.173333pt;}
.y156{bottom:955.813333pt;}
.y1f0{bottom:957.733333pt;}
.y181{bottom:959.013333pt;}
.y80{bottom:962.213333pt;}
.y11b{bottom:970.533333pt;}
.y1c9{bottom:971.173333pt;}
.y155{bottom:972.133333pt;}
.y180{bottom:975.333333pt;}
.y7f{bottom:978.533333pt;}
.y1ef{bottom:983.333333pt;}
.yd{bottom:986.853333pt;}
.y1c8{bottom:987.173333pt;}
.y154{bottom:988.133333pt;}
.y17f{bottom:991.333333pt;}
.y7e{bottom:994.533333pt;}
.y1ee{bottom:996.453333pt;}
.y1c7{bottom:1003.493333pt;}
.y153{bottom:1004.133333pt;}
.y17e{bottom:1007.333333pt;}
.y1ed{bottom:1009.253333pt;}
.y7d{bottom:1010.533333pt;}
.y1c6{bottom:1019.493333pt;}
.y1ec{bottom:1022.053333pt;}
.y17d{bottom:1023.653333pt;}
.yc{bottom:1025.573333pt;}
.y7c{bottom:1026.853333pt;}
.y152{bottom:1027.493333pt;}
.y7b{bottom:1042.853333pt;}
.y7a{bottom:1078.720000pt;}
.y2{bottom:1082.240000pt;}
.y79{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.hc{height:29.493750pt;}
.h10{height:29.803125pt;}
.hf{height:30.751875pt;}
.h5{height:32.133750pt;}
.hb{height:34.318750pt;}
.h9{height:36.646250pt;}
.h6{height:36.800000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h4{height:38.720000pt;}
.hd{height:39.138750pt;}
.he{height:39.821250pt;}
.h8{height:41.543750pt;}
.ha{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:165.826667pt;}
.w2{width:238.173333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x4{left:53.792000pt;}
.x11{left:57.311988pt;}
.x1e{left:61.471988pt;}
.xb{left:62.432000pt;}
.x19{left:64.671988pt;}
.x1c{left:68.191988pt;}
.x1d{left:69.151988pt;}
.xa{left:72.032000pt;}
.x1b{left:75.551988pt;}
.x12{left:77.791988pt;}
.x21{left:86.431988pt;}
.x1a{left:109.791988pt;}
.x8{left:110.752000pt;}
.x10{left:116.191988pt;}
.x7{left:118.112000pt;}
.x20{left:131.263988pt;}
.xc{left:158.146667pt;}
.x1f{left:161.666655pt;}
.x13{left:192.066655pt;}
.x9{left:347.333333pt;}
.x2{left:387.680000pt;}
.x3{left:390.240000pt;}
.xf{left:396.959988pt;}
.x14{left:398.559988pt;}
.xe{left:406.560000pt;}
.x22{left:411.039988pt;}
.x18{left:412.319988pt;}
.xd{left:416.160000pt;}
.x16{left:419.039988pt;}
.x1{left:420.320000pt;}
.x15{left:422.879988pt;}
.x6{left:430.880000pt;}
.x23{left:435.039988pt;}
.x17{left:453.946655pt;}
.x25{left:484.346655pt;}
.x24{left:502.586655pt;}
.x26{left:731.493322pt;}
}




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